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 19bfa6530..bb12d2ca5 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, env: 'dev' }); + const runtime = await createRuntime(astroConfig, { logging }); const server = http.createServer(async (req, res) => { const result = await runtime.load(req.url); |