diff options
Diffstat (limited to '')
-rw-r--r-- | svelte.config.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..a103e15 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,19 @@ +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; |