diff options
Diffstat (limited to 'src/dev.ts')
-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 efa7f1f6c..19bfa6530 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, { logging, env: 'dev' }); const server = http.createServer(async (req, res) => { const result = await runtime.load(req.url); |