Skip to content

Commit b69321c

Browse files
committed
refactor: ♻️ use only vite proprocess
1 parent 9dd61dc commit b69321c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

svelte.config.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import adapter from '@sveltejs/adapter-auto'
22
import { vitePreprocess } from '@sveltejs/kit/vite'
33
import { mdsvex } from 'mdsvex'
4-
import preprocess from 'svelte-preprocess'
54
import mdsvexConfig from './mdsvex.config.js'
65

76
/** @type {import('@sveltejs/kit').Config} */
@@ -10,13 +9,7 @@ const config = {
109

1110
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
1211
// for more information about preprocessors
13-
preprocess: [
14-
mdsvex(mdsvexConfig),
15-
vitePreprocess(),
16-
preprocess({
17-
postcss: true,
18-
}),
19-
],
12+
preprocess: [mdsvex(mdsvexConfig), vitePreprocess()],
2013

2114
kit: {
2215
adapter: adapter(),

0 commit comments

Comments
 (0)