summaryrefslogtreecommitdiff
path: root/svelte.config.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--svelte.config.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/svelte.config.js b/svelte.config.js
deleted file mode 100644
index a103e15..0000000
--- a/svelte.config.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import adapter from '@sveltejs/adapter-static';
-import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
-
-/** @type {import('@sveltejs/kit').Config} */
-const config = {
- preprocess: vitePreprocess(),
-
- kit: {
- adapter: adapter({
- pages: "build",
- assets: "build",
- fallback: "huh.html",
- preprocess: false,
- strict: true,
- })
- }
-};
-
-export default config;