mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-10 09:12:56 +08:00
16 lines
334 B
JavaScript
16 lines
334 B
JavaScript
import sveltePreprocess from 'svelte-preprocess'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
compilerOptions: {
|
|
enableSourcemap: true,
|
|
},
|
|
preprocess: sveltePreprocess({
|
|
sourceMap: true,
|
|
}),
|
|
experimental: {
|
|
prebundleSvelteLibraries: true,
|
|
},
|
|
}
|
|
|
|
export default config
|