mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-02-24 07:25:48 +08:00
13 lines
265 B
JavaScript
13 lines
265 B
JavaScript
import sveltePreprocess from 'svelte-preprocess'
|
|
|
|
export default {
|
|
compilerOptions: {
|
|
enableSourcemap: true,
|
|
},
|
|
preprocess: sveltePreprocess({
|
|
sourceMap: true,
|
|
}),
|
|
experimental: {
|
|
prebundleSvelteLibraries: true,
|
|
},
|
|
}
|