warpgate/warpgate-web/svelte.config.js

17 lines
334 B
JavaScript
Raw Normal View History

2022-04-11 04:58:58 +08:00
import sveltePreprocess from 'svelte-preprocess'
2022-06-27 02:50:04 +08:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2022-04-11 04:58:58 +08:00
compilerOptions: {
enableSourcemap: true,
},
preprocess: sveltePreprocess({
sourceMap: true,
}),
experimental: {
prebundleSvelteLibraries: true,
},
}
2022-06-27 02:50:04 +08:00
export default config