We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e3e8b commit 231f405Copy full SHA for 231f405
src/runtime/server.ts
@@ -48,9 +48,9 @@ export async function createServer(
48
config: StartCliConfig
49
): Promise<Express> {
50
config = {
51
- url: `http://localhost:${port}`,
52
- baseDir: process.cwd(),
53
...config,
+ url: config.url || `http://localhost:${port}`,
+ baseDir: config.baseDir || process.cwd(),
54
};
55
56
debug('Starting server with config: %p', config);
0 commit comments