From 59067695f934184c7e6efaa4fc89fbde2f27a7cb Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Thu, 21 Jul 2022 07:22:36 -0400 Subject: initial migration, app runs --- svelte.config.cjs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 svelte.config.cjs (limited to 'svelte.config.cjs') 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; -- cgit v1.2.3