| import { mdsvex } from 'mdsvex'; |
| import mdsvexConfig from './mdsvex.config.js'; |
| import adapter from '@sveltejs/adapter-static'; |
| import preprocess from 'svelte-preprocess'; |
|
|
| const dev = process.env.NODE_ENV === 'development'; |
|
|
| |
| const config = { |
| extensions: ['.svelte', ...mdsvexConfig.extensions], |
|
|
| |
| |
| preprocess: [preprocess(), mdsvex(mdsvexConfig)], |
|
|
| kit: { |
| paths: { |
| base: dev ? '' : '/staticspaceiframe/huggingface-projects/diffuse-the-rest/build' |
| }, |
| adapter: adapter(), |
| prerender: { |
| default: true |
| } |
| } |
| }; |
|
|
| export default config; |
|
|