Restart server

This workflow kills any running Next.js or Node processes related to the platform and restarts the development server. Use this when the application becomes sluggish or unresponsive (500 timeouts).

  1. Terminate existing dev server processes. // turbo
  2. pkill -f "next-server" || pkill -f "next dev" || true

  3. Start the server again. // turbo

  4. npm run dev