This commit is contained in:
lucienteng
2024-08-23 11:53:59 +08:00
commit 8881708e2b
210 changed files with 23515 additions and 0 deletions

12
postcss.config.js Normal file
View File

@@ -0,0 +1,12 @@
// @ts-check
/** @type {import('postcss-load-config').Config} */
export default {
plugins: {
"postcss-import": {},
"tailwindcss/nesting": {},
tailwindcss: {},
autoprefixer: {},
...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {})
}
};