⬆️ Updated SvelteKit

This commit is contained in:
Mawoka
2022-07-26 21:51:58 +02:00
parent eecbc93834
commit ba79c6a8c1
11 changed files with 337 additions and 306 deletions
+2
View File
@@ -7,11 +7,13 @@
const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const postcss_import = require('postcss-import');
const config = {
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
postcss_import(),
//But others, like autoprefixer, need to run after,
autoprefixer,
cssnano({ preset: 'default' })