初始化梵音项目

This commit is contained in:
yziiy
2025-08-11 11:40:20 +08:00
parent 0e1f34d546
commit 38fcae712e
455 changed files with 48704 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: {} } : {})
}
};