From a13f5ed187be4eded5cbd8226728fe3c114a80ee Mon Sep 17 00:00:00 2001 From: oib Date: Sat, 14 Feb 2026 16:35:33 +0100 Subject: [PATCH] fix: marketplace asset paths and add vite.config.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix dist/index.html: absolute /assets/ → relative assets/ paths - Create vite.config.ts with base: '/marketplace/' for future builds - Deploy mock data and vite.svg to server root for current build compat --- apps/marketplace-web/vite.config.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apps/marketplace-web/vite.config.ts diff --git a/apps/marketplace-web/vite.config.ts b/apps/marketplace-web/vite.config.ts new file mode 100644 index 00000000..d782ce78 --- /dev/null +++ b/apps/marketplace-web/vite.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'vite' + +export default defineConfig({ + base: '/marketplace/', +})