diff --git a/frontend/svelte.config.js b/frontend/svelte.config.js index 5de9451..3fed860 100644 --- a/frontend/svelte.config.js +++ b/frontend/svelte.config.js @@ -5,11 +5,15 @@ import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; const config = { // Consult https://kit.svelte.dev/docs/integrations#preprocessors // for more information about preprocessors - preprocess: vitePreprocess(), + preprocess: [ + vitePreprocess({ postcss: true }), + ], kit: { - adapter: adapter(), - }, + adapter: adapter({ + precompress: true, + }) + } }; export default config;