🆙 Fix 🆙

This commit is contained in:
Remco
2026-01-29 14:51:57 +01:00
parent df765557f3
commit 30ae749c0c
4 changed files with 24 additions and 32 deletions
@@ -4,6 +4,7 @@ import path from "path";
import tailwindcss from "@tailwindcss/postcss";
import postcssImport from "postcss-import";
import autoprefixer from "autoprefixer";
import nesting from "postcss-nesting";
export default defineConfig({
plugins: [
@@ -39,6 +40,7 @@ export default defineConfig({
tailwindcss({
config: path.resolve(__dirname, "tailwind.config.cjs"),
}),
nesting(),
autoprefixer(),
],
},