import adapter from "@sveltejs/adapter-static" /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { /* Unfortunately, this doesn't work. Fonts are not referenced correctly. 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