diff options
Diffstat (limited to '')
-rw-r--r-- | src/dev.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev.ts b/src/dev.ts index bb12d2ca5..f2cd6a80d 100644 --- a/src/dev.ts +++ b/src/dev.ts @@ -21,7 +21,7 @@ const logging: LogOptions = { export default async function (astroConfig: AstroConfig) { const { projectRoot } = astroConfig; - const runtime = await createRuntime(astroConfig, { logging }); + const runtime = await createRuntime(astroConfig, { mode: 'development', logging }); const server = http.createServer(async (req, res) => { const result = await runtime.load(req.url); |