0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

Use .js to import logger' (#8232)

This commit is contained in:
Matthew Phillips 2023-08-25 14:06:53 -04:00 committed by GitHub
parent cd69aa7347
commit a824863ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Use .js to import logger

View file

@ -1,6 +1,6 @@
import type { UserConfig } from 'vite'; import type { UserConfig } from 'vite';
import type { AstroUserConfig } from '../@types/astro'; import type { AstroUserConfig } from '../@types/astro';
import { Logger } from '../core/logger/core'; import { Logger } from '../core/logger/core.js';
export function defineConfig(config: AstroUserConfig) { export function defineConfig(config: AstroUserConfig) {
return config; return config;