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