blob: e6eb2e2dd0d20d2277299df58cde58ca7040e909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import adapter from "@sveltejs/adapter-static"
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
output: {
bundleStrategy: "inline",
},
router: {
type: "hash",
},
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: "../../dist",
fallback: "index.html",
})
}
}
export default config
|