diff --git a/svelte.config.js b/svelte.config.js index c3bd805..9205c1d 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -3,16 +3,16 @@ import analyze from "rollup-plugin-analyzer"; /** @type {import('@sveltejs/kit').Config} */ export default { - kit: { - // hydrate the
element in src/app.html - adapter: adapter(), - vite: { - build: { - rollupOptions: { - plugins: [analyze()], - // external: ['updux','@yanick/updeep'] + kit: { + adapter: adapter(), + paths: { base: "/aotds-docks" }, + vite: { + build: { + rollupOptions: { + plugins: [analyze()], + // external: ['updux','@yanick/updeep'] + }, + }, }, - }, }, - }, };