diff --git a/vite.config.ts b/vite.config.ts index bbf8c7d..6e8681d 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,11 @@ -import { sveltekit } from '@sveltejs/kit/vite'; -import { defineConfig } from 'vite'; +import { sveltekit } from "@sveltejs/kit/vite"; +import { defineConfig } from "vite"; export default defineConfig({ - plugins: [sveltekit()] + plugins: [sveltekit()], + build: { + rollupOptions: { + external: ["sharp"], + }, + }, });