diff options
Diffstat (limited to 'svelte.config.cjs')
| -rw-r--r-- | svelte.config.cjs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/svelte.config.cjs b/svelte.config.cjs new file mode 100644 index 0000000..dd2b29d --- /dev/null +++ b/svelte.config.cjs @@ -0,0 +1,11 @@ +const preprocess = require("svelte-preprocess"); + +const config = { + preprocess: [ + preprocess({ + postcss: true, + }), + ], +}; + +module.exports = config; |
