postcss and scripts

This commit is contained in:
Per Stark
2024-12-30 12:13:36 +01:00
parent c3ec25cc44
commit d5cf81edbe
6 changed files with 4716 additions and 2153 deletions

9
postcss.config.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer'),
require('cssnano')({
preset: 'default', // Minify CSS
}),
],
};