summaryrefslogtreecommitdiff
path: root/svelte.config.js
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-04-12 18:39:51 -0600
committerLogan Hunt <loganhunt@simponic.xyz>2022-04-12 18:39:51 -0600
commit3a4b67eb37142fb065ce0fb83b0bb184eab01b02 (patch)
treed569aad03f33f9a2bfdf7bf193a19ac4a319d594 /svelte.config.js
downloadmistymountainstherapy-3a4b67eb37142fb065ce0fb83b0bb184eab01b02.tar.gz
mistymountainstherapy-3a4b67eb37142fb065ce0fb83b0bb184eab01b02.zip
Let there be light
Diffstat (limited to 'svelte.config.js')
-rw-r--r--svelte.config.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/svelte.config.js b/svelte.config.js
new file mode 100644
index 0000000..892f0c4
--- /dev/null
+++ b/svelte.config.js
@@ -0,0 +1,15 @@
+import adapter from '@sveltejs/adapter-auto';
+import preprocess from 'svelte-preprocess';
+
+/** @type {import('@sveltejs/kit').Config} */
+const config = {
+ // Consult https://github.com/sveltejs/svelte-preprocess
+ // for more information about preprocessors
+ preprocess: preprocess(),
+
+ kit: {
+ adapter: adapter()
+ }
+};
+
+export default config;