Site done
This commit is contained in:
parent
d747d9419f
commit
cca01dc055
11 changed files with 293 additions and 8 deletions
|
|
@ -1,9 +1,14 @@
|
|||
import adapter from '@sveltejs/adapter-auto';
|
||||
import adapter from '@sveltejs/adapter-static';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
kit: {
|
||||
adapter: adapter()
|
||||
adapter: adapter({
|
||||
fallback: 'index.html'
|
||||
}),
|
||||
paths: {
|
||||
base: '/videos',
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Reference in a new issue