add base to config

main
Yanick Champoux 2022-04-05 19:36:36 -04:00
parent abb0ee3d9b
commit 9e7922066c
1 changed files with 10 additions and 10 deletions

View File

@ -3,16 +3,16 @@ import analyze from "rollup-plugin-analyzer";
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
export default { export default {
kit: { kit: {
// hydrate the <div id="svelte"> element in src/app.html adapter: adapter(),
adapter: adapter(), paths: { base: "/aotds-docks" },
vite: { vite: {
build: { build: {
rollupOptions: { rollupOptions: {
plugins: [analyze()], plugins: [analyze()],
// external: ['updux','@yanick/updeep'] // external: ['updux','@yanick/updeep']
},
},
}, },
},
}, },
},
}; };