init
All checks were successful
release / release (push) Successful in 1m9s

This commit is contained in:
2024-08-09 15:59:23 +08:00
commit 246bef3b55
33 changed files with 63393 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;