| import { mdsvex } from 'mdsvex'; |
| import adapter from '@sveltejs/adapter-static'; |
| import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; |
|
|
| |
| const config = { |
| |
| |
| preprocess: [vitePreprocess(), mdsvex()], |
|
|
| kit: { |
| paths: { |
| relative: true |
| }, |
| router: { type: 'hash' }, |
| adapter: adapter({ |
| pages: '../public', |
| assets: '../public', |
| fallback: 'index.html', |
| precompress: false, |
| strict: true |
| }), |
| output: { |
| bundleStrategy: 'inline' |
| }, |
| alias: { |
| $styles: 'src/styles' |
| } |
| }, |
|
|
| extensions: ['.svelte', '.svx'] |
| }; |
|
|
| export default config; |
|
|