Prepare for deployment

This commit is contained in:
nemunaire 2022-03-01 13:46:44 +01:00
commit d440d85dc1
7 changed files with 79 additions and 9 deletions

View file

@ -1,3 +1,4 @@
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
@ -7,6 +8,9 @@ const config = {
preprocess: preprocess(),
kit: {
adapter: adapter({
fallback: 'index.html'
}),
}
};