mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-10-03 03:45:55 +08:00
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
import sveltePreprocess from 'svelte-preprocess'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
compilerOptions: {
|
|
enableSourcemap: true,
|
|
dev: true,
|
|
},
|
|
preprocess: sveltePreprocess({
|
|
sourceMap: true,
|
|
}),
|
|
prebundleSvelteLibraries: true,
|
|
}
|
|
|
|
export default config
|