diff options
Diffstat (limited to 'svelte.config.js')
| -rw-r--r-- | svelte.config.js | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/svelte.config.js b/svelte.config.js index 540602c1..8ff35355 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,19 +1,10 @@ import adapter from '@sveltejs/adapter-vercel'; import { vitePreprocess } from '@sveltejs/kit/vite'; -import autoprefixer from 'autoprefixer'; -import sveltePreprocess from 'svelte-preprocess'; // /** @type {import('@sveltejs/adapter-vercel').Config} */ /** @type {import('@sveltejs/kit').Config} */ const config = { - preprocess: [ - vitePreprocess(), - sveltePreprocess({ - postcss: { - plugins: [autoprefixer()] - } - }) - ], + preprocess: vitePreprocess(), kit: { adapter: adapter(), alias: { |