icon minification

This commit is contained in:
2023-07-06 20:15:20 +02:00
parent b6166c99fc
commit da2dfeee63
8 changed files with 206 additions and 1 deletions

View File

@@ -1,9 +1,10 @@
import adapter from "@sveltejs/adapter-static"
import preprocess from "svelte-preprocess"
import autoprefixer from "autoprefixer"
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: [preprocess()],
preprocess: [preprocess({postcss: {plugins: autoprefixer()}})],
kit: {
adapter: adapter(),
},