initial commit

This commit is contained in:
2026-06-16 21:10:36 +02:00
commit 2c5be3f5a6
17 changed files with 2764 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { type Config } from "postcss-load-config";
import autoprefixer from "autoprefixer";
import postcssNested from "postcss-nested";
import tailwindcss from "@tailwindcss/postcss";
export default {
plugins: [autoprefixer(), postcssNested(), tailwindcss()],
} satisfies Config;