From 9e7922066cff4a6f3d9aeaffa18a86cef029a2d4 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Tue, 5 Apr 2022 19:36:36 -0400 Subject: [PATCH] add base to config --- svelte.config.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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'] + }, + }, }, - }, }, - }, };