diff --git a/packages/astro/src/core/errors.ts b/packages/astro/src/core/errors.ts index 7cfb46e45..49bf4b6f2 100644 --- a/packages/astro/src/core/errors.ts +++ b/packages/astro/src/core/errors.ts @@ -88,7 +88,10 @@ export function createCustomViteLogger(logLevel: LogLevel): Logger { function generateHint(err: ErrorWithMetadata, filePath?: URL): string | undefined { if (/Unknown file extension \"\.(jsx|vue|svelte|astro|css)\" for /.test(err.message)) { return 'You likely need to add this package to `vite.ssr.noExternal` in your astro config file.'; - } else if (err.toString().startsWith('ReferenceError') && (err.loc?.file ?? filePath?.pathname)?.endsWith('.astro')) { + } else if ( + err.toString().startsWith('ReferenceError') && + (err.loc?.file ?? filePath?.pathname)?.endsWith('.astro') + ) { return 'export statements in `.astro` files do not have access to local variable declarations, only imported values.'; } else { const res = incompatPackageExp.exec(err.stack);