From c94aa8038dd43d1681c5038a257b904555227244 Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Thu, 18 Jun 2026 17:17:58 +0200 Subject: [PATCH] Add base path to the vite config to be able to tunnel all vite assets through a CDN --- vite.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/vite.config.js b/vite.config.js index 6f180452..5456a370 100644 --- a/vite.config.js +++ b/vite.config.js @@ -14,6 +14,7 @@ async function getConfig() { const additionalPlugins = await collectModulePlugins('extensions'); return defineConfig({ + base: './', build: { sourcemap: true, // Source map generation must be turned on },