diff options
Diffstat (limited to 'packages/astro/src/dev.ts')
-rw-r--r-- | packages/astro/src/dev.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/astro/src/dev.ts b/packages/astro/src/dev.ts index f6a765ba4..f85d4dda1 100644 --- a/packages/astro/src/dev.ts +++ b/packages/astro/src/dev.ts @@ -1,4 +1,3 @@ -import 'source-map-support/register.js'; import type { AstroConfig } from './@types/astro'; import type { LogOptions } from './logger.js'; @@ -8,7 +7,7 @@ import path from 'path'; import { performance } from 'perf_hooks'; import { defaultLogDestination, defaultLogLevel, debug, error, info, parseError } from './logger.js'; import { createRuntime } from './runtime.js'; -import { stopTimer } from './build/util'; +import { stopTimer } from './build/util.js'; const hostname = '127.0.0.1'; |