We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd05f8d commit 2d063d7Copy full SHA for 2d063d7
src/launchers/builtin.ts
@@ -16,7 +16,7 @@ let server: ChildProcess;
16
async function startServer(entrypoint: string): Promise<ChildProcess> {
17
// Resolve document root and router
18
const router = entrypoint;
19
- const docroot = pathJoin(getUserDir(), process.env.VERCEL_LARAVEL_DOCROOT ?? '');
+ const docroot = pathJoin(getUserDir(), process.env.VERCEL_PHP_DOCROOT ?? '');
20
21
console.log(`🐘 Spawning: PHP Built-In Server at ${docroot} (document root) and ${router} (router)`);
22
0 commit comments