diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 08:57:30 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 08:57:30 -0400 |
| commit | 4d0484132aa2a6baef12a5ed5d3d4c3ca1ad7106 (patch) | |
| tree | 9e6afc515a7b92e9ee89c75888b0a23b02c8735c /svelte.config.cjs | |
| parent | 59067695f934184c7e6efaa4fc89fbde2f27a7cb (diff) | |
All works. learn source map error and fix it
Diffstat (limited to 'svelte.config.cjs')
| -rw-r--r-- | svelte.config.cjs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/svelte.config.cjs b/svelte.config.cjs index dd2b29d..4e5c77f 100644 --- a/svelte.config.cjs +++ b/svelte.config.cjs @@ -1,11 +1,8 @@ const preprocess = require("svelte-preprocess"); const config = { - preprocess: [ - preprocess({ - postcss: true, - }), - ], + preprocess: preprocess({ postcss: true, sourceMap: true }), + }; -module.exports = config; +module.exports = config;
\ No newline at end of file |
