diff --git a/svelte.config.js b/svelte.config.js index cfece53..b249d0f 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,7 +1,13 @@ import adapter from '@sveltejs/adapter-node' +import preprocess from 'svelte-preprocess';3 /** @type {import('@sveltejs/kit').Config} */ const config = { + preprocess: [ + preprocess({ + postcss: true + }) + ], kit: { adapter: adapter(), }