diff --git a/src/server/apps.ts b/src/server/apps.ts index 9c8e4ef..3af2a33 100644 --- a/src/server/apps.ts +++ b/src/server/apps.ts @@ -132,7 +132,7 @@ const runApp = async (dir: string, port: number) => { const proc = Bun.spawn(['bun', 'run', 'toes'], { cwd, - env: { ...process.env, PORT: String(port) }, + env: { ...process.env, PORT: String(port), NO_AUTOPORT: 'true' }, stdout: 'pipe', stderr: 'pipe', })