From e235aa6cf4914cbff6c72f19e0fcf6888da349f7 Mon Sep 17 00:00:00 2001 From: axtloss Date: Tue, 20 Aug 2024 01:20:30 +0200 Subject: yayyy new website!! --- svelte.config.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 svelte.config.js (limited to 'svelte.config.js') 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; -- cgit v1.2.3