aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/svelte.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/kit/svelte.config.js')
-rw-r--r--apps/kit/svelte.config.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/kit/svelte.config.js b/apps/kit/svelte.config.js
new file mode 100644
index 0000000..2c7fdde
--- /dev/null
+++ b/apps/kit/svelte.config.js
@@ -0,0 +1,16 @@
+import adapter from "svelte-adapter-bun";
+import preprocess from "svelte-preprocess";
+
+/** @type {import('@sveltejs/kit').Config} */
+const config = {
+ preprocess: [
+ preprocess({
+ postcss: true,
+ }),
+ ],
+ kit: {
+ adapter: adapter(),
+ },
+};
+
+export default config;