aboutsummaryrefslogtreecommitdiffstats
path: root/svelte.config.js
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-08-18 18:30:04 +0200
committerLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-08-18 18:30:04 +0200
commitc2ed0f84cef644ba28096f01ec14764114b68c0f (patch)
treefbdc236ba8ba646cf27fc51d250ea018a2fa7f25 /svelte.config.js
downloadpixelsvg-c2ed0f84cef644ba28096f01ec14764114b68c0f.tar.gz
pixelsvg-c2ed0f84cef644ba28096f01ec14764114b68c0f.tar.bz2
pixelsvg-c2ed0f84cef644ba28096f01ec14764114b68c0f.tar.lz
pixelsvg-c2ed0f84cef644ba28096f01ec14764114b68c0f.zip

feat: initial commit

HEADmaster
Diffstat (limited to 'svelte.config.js')
-rw-r--r--svelte.config.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/svelte.config.js b/svelte.config.js
new file mode 100644
index 0000000..4a423ba
--- /dev/null
+++ b/svelte.config.js
@@ -0,0 +1,12 @@
+import adapter from '@sveltejs/adapter-static';
+import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
+
+/** @type {import('@sveltejs/kit').Config} */
+const config = {
+ // Consult https://svelte.dev/docs/kit/integrations
+ // for more information about preprocessors
+ preprocess: vitePreprocess(),
+ kit: { adapter: adapter() }
+};
+
+export default config;