aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.cjs
diff options
context:
space:
mode:
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..cf7a842
--- /dev/null
+++ b/svelte.config.cjs
@@ -0,0 +1,11 @@
+module.exports = {
+ kit: {
+ // By default, `npm run build` will create a standard Node app.
+ // You can create optimized builds for different platforms by
+ // specifying a different adapter
+ adapter: '@sveltejs/adapter-node',
+
+ // hydrate the <div id="forum"> element in src/app.html
+ target: '#forum'
+ }
+};