fix: marketplace asset paths and add vite.config.ts

- 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
This commit is contained in:
oib
2026-02-14 16:35:33 +01:00
parent 8741724250
commit a13f5ed187

View File

@@ -0,0 +1,5 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: '/marketplace/',
})