chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:37:47 +08:00
commit 7653f56fed
1422 changed files with 359026 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
module.exports = {
plugins: {
"postcss-import": {
// Resolve @/ alias to make imports work during build
resolve(id) {
return id.startsWith("@/")
? id.replace("@/", "./")
: id;
},
},
"tailwindcss/nesting": {},
tailwindcss: {},
autoprefixer: {},
'postcss-nesting': {}
},
};