diff options
Diffstat (limited to 'svelte.config.js')
-rw-r--r-- | svelte.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..2c443fe --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,11 @@ +import { mdsvex } from 'mdsvex'; +import adapter from '@sveltejs/adapter-static'; +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; + +const config = { + preprocess: [vitePreprocess(), mdsvex()], + kit: { adapter: adapter() }, + extensions: ['.svelte', '.svx'] +}; + +export default config; |