This commit is contained in:
2023-12-15 16:11:33 +01:00
parent a72dd2124d
commit 643db90b15
10 changed files with 408 additions and 385 deletions

View File

@ -1,8 +1,9 @@
/** @type {import('postcss-load-config').Config} */
module.exports = {
plugins: {
autoprefixer: {},
cssnano: {},
'tailwindcss/nesting': 'postcss-nesting',
tailwindcss: {},
},
plugins: [
require('autoprefixer'),
require('cssnano'),
require("tailwindcss/nesting"),
]
};