This commit is contained in:
2024-06-12 14:34:28 +08:00
commit 5db4d61d64
20 changed files with 397 additions and 0 deletions

15
postcss.config.cjs Normal file
View File

@@ -0,0 +1,15 @@
const tailwindcss = require('tailwindcss');
const nesting = require('tailwindcss/nesting');
const autoprefixer = require('autoprefixer');
const config = {
plugins: [
nesting(),
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer
]
};
module.exports = config;