diff options
Diffstat (limited to 'svelte.config.js')
-rw-r--r-- | svelte.config.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/svelte.config.js b/svelte.config.js index 03c17f2..df0fdce 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -3,10 +3,14 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; /** @type {import('@sveltejs/kit').Config} */ const config = { - // Consult https://svelte.dev/docs/kit/integrations - // for more information about preprocessors - preprocess: vitePreprocess(), - kit: { adapter: adapter() } + // Consult https://svelte.dev/docs/kit/integrations + // for more information about preprocessors + preprocess: vitePreprocess(), + kit: { + adapter: adapter({ + precompress: true, + }), + }, }; export default config; |