Skip to content

Commit c32833a

Browse files
Fix Astro test. The further reduction in generated CSS now caused the assets to be inlined 🤦
1 parent d51babe commit c32833a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

integrations/vite/astro.test.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,13 @@ test(
9090
import { defineConfig } from 'astro/config'
9191
9292
// https://astro.build/config
93-
export default defineConfig({ vite: { plugins: [tailwindcss()] }, integrations: [react()] })
93+
export default defineConfig({
94+
vite: { plugins: [tailwindcss()] },
95+
integrations: [react()],
96+
build: { inlineStylesheets: 'never' },
97+
})
9498
`,
99+
// prettier-ignore
95100
'src/pages/index.astro': html`
96101
---
97102
import ClientOnly from './client-only';

0 commit comments

Comments
 (0)