Prepare for deployment
This commit is contained in:
parent
f85758ef33
commit
d440d85dc1
7 changed files with 79 additions and 9 deletions
|
|
@ -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'
|
||||
}),
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Reference in a new issue