diff options
| author | Berke Güzel <wenekar1@gmail.com> | 2026-01-29 23:56:21 +0300 |
|---|---|---|
| committer | Berke Güzel <wenekar1@gmail.com> | 2026-01-29 23:56:21 +0300 |
| commit | 35556dca71eafdac4eb5d2fe781ba39687d0b058 (patch) | |
| tree | d85489336dce549b08d385c45cec6ae0678b211b /svelte.config.js | |
| parent | 292d9dd4241ace94bfaf50827dcedfbd40de8032 (diff) | |
initial commit
Diffstat (limited to 'svelte.config.js')
| -rw-r--r-- | svelte.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..d7a9a54 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,12 @@ +import { mdsvex } from 'mdsvex'; +import adapter from '@sveltejs/adapter-static'; +import mdsvexConfig from './mdsvex.config.js'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { adapter: adapter() }, + preprocess: [mdsvex(mdsvexConfig)], + extensions: ['.svelte', '.svx'] +}; + +export default config; |
