diff options
author | 2022-04-02 17:35:42 +0000 | |
---|---|---|
committer | 2022-04-02 17:35:42 +0000 | |
commit | 76f6643dddb9343218020cf7585be92a1fe45d3a (patch) | |
tree | a76499cd108706ed5d81fa9f13ed929f1c82582b | |
parent | d55658f061bc4d95efa53e658cfbe407d94af284 (diff) | |
download | astro-76f6643dddb9343218020cf7585be92a1fe45d3a.tar.gz astro-76f6643dddb9343218020cf7585be92a1fe45d3a.tar.zst astro-76f6643dddb9343218020cf7585be92a1fe45d3a.zip |
[ci] format
-rw-r--r-- | packages/astro/src/vite-plugin-astro/index.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/astro/src/vite-plugin-astro/index.ts b/packages/astro/src/vite-plugin-astro/index.ts index 7d5839e48..8aff612ba 100644 --- a/packages/astro/src/vite-plugin-astro/index.ts +++ b/packages/astro/src/vite-plugin-astro/index.ts @@ -63,7 +63,7 @@ export default function astro({ config, logging }: AstroPluginOptions): vite.Plu const { query: fromQuery, filename } = parseAstroRequest(from); if (fromQuery.astro && isRelativePath(id) && fromQuery.type === 'script') { const resolvedURL = new URL(id, `file://${filename}`); - const resolved = resolvedURL.pathname + const resolved = resolvedURL.pathname; if (isBrowserPath(resolved)) { return relativeToRoot(resolved + resolvedURL.search); } @@ -131,7 +131,9 @@ export default function astro({ config, logging }: AstroPluginOptions): vite.Plu const src = hoistedScript.src!; if (src.startsWith('/') && !isBrowserPath(src)) { const publicDir = config.public.pathname.replace(/\/$/, '').split('/').pop() + '/'; - throw new Error(`\n\n<script src="${src}"> references an asset in the "${publicDir}" directory. Please add the "is:inline" directive to keep this asset from being bundled.\n\nFile: ${filename}`) + throw new Error( + `\n\n<script src="${src}"> references an asset in the "${publicDir}" directory. Please add the "is:inline" directive to keep this asset from being bundled.\n\nFile: ${filename}` + ); } } |