41 lines
983 B
JavaScript
41 lines
983 B
JavaScript
import {mdsvex} from 'mdsvex';
|
|
import mdsvexConfig from './mdsvex.config.js';
|
|
import adapter from '@sveltejs/adapter-static';
|
|
import preprocess from 'svelte-preprocess';
|
|
import Icons from 'unplugin-icons/vite';
|
|
import svelteSvg from '@poppanator/sveltekit-svg';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
extensions: ['.svelte', ...mdsvexConfig.extensions],
|
|
|
|
preprocess: [
|
|
preprocess({
|
|
postcss: true,
|
|
}),
|
|
mdsvex(mdsvexConfig),
|
|
],
|
|
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: null
|
|
}),
|
|
...(process.env.NODE_ENV !== 'development' ? ({
|
|
paths: {
|
|
base: '/omorphia'
|
|
} }) : ({})),
|
|
vite: {
|
|
plugins: [
|
|
svelteSvg(),
|
|
Icons({
|
|
compiler: 'svelte',
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|