aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.cjs
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-07-21 07:22:36 -0400
committerFurkan Sahin <furkan-dev@proton.me>2022-07-21 07:22:36 -0400
commit59067695f934184c7e6efaa4fc89fbde2f27a7cb (patch)
treeaa0673196256ec61544b6acbc3471a81516b5f20 /svelte.config.cjs
parentb3fdc004706a1501b32372747abc1f4f4b7dd367 (diff)
initial migration, app runs
Diffstat (limited to 'svelte.config.cjs')
-rw-r--r--svelte.config.cjs11
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;