diff options
author | 2024-04-30 09:06:52 +0000 | |
---|---|---|
committer | 2024-04-30 09:06:52 +0000 | |
commit | 5e545e8c6a9931de4dff1dcfa213f30e3e82727e (patch) | |
tree | d2ba9ef7492337dc82f9c24424c1903138dc1fc0 | |
parent | a86dc9d269fc4409c458cfa05dcfaeee12bade2f (diff) | |
download | astro-5e545e8c6a9931de4dff1dcfa213f30e3e82727e.tar.gz astro-5e545e8c6a9931de4dff1dcfa213f30e3e82727e.tar.zst astro-5e545e8c6a9931de4dff1dcfa213f30e3e82727e.zip |
[ci] format
-rw-r--r-- | packages/astro/src/vite-plugin-astro-server/vite.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/vite-plugin-astro-server/vite.ts b/packages/astro/src/vite-plugin-astro-server/vite.ts index 613a314be..33b3ab4ed 100644 --- a/packages/astro/src/vite-plugin-astro-server/vite.ts +++ b/packages/astro/src/vite-plugin-astro-server/vite.ts @@ -48,7 +48,7 @@ export async function* crawlGraph( // dependencies as `importedModules`, we should also skip them as they aren't really // imported. Without this, every hoisted script in the project is added to every page! if (isCSSRequest(id)) { - continue + continue; } for (const importedModule of entry.importedModules) { |