Spaces:
Running
Running
File size: 290 Bytes
98051f8 78aed5c 2ec957c 98051f8 02dda0c 78aed5c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import Icons from "unplugin-icons/vite";
export default defineConfig({
plugins: [
sveltekit(),
Icons({
compiler: "svelte",
}),
],
optimizeDeps: {
include: ["browser-image-resizer"],
},
});
|