Skip to content

Commit c80ce14

Browse files
committed
Disable applyBaseStyles explicitly since it doesn't work
1 parent cc888a8 commit c80ce14

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

astro.config.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
99

1010
// https://astro.build/config
1111
export default defineConfig({
12-
integrations: [tailwind(), react(), mdx()],
12+
integrations: [
13+
tailwind({
14+
applyBaseStyles: false,
15+
}),
16+
react(),
17+
mdx(),
18+
],
1319
vite: {
1420
server: {
1521
watch: {

0 commit comments

Comments
 (0)