- 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
6 lines
95 B
TypeScript
6 lines
95 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
base: '/marketplace/',
|
|
})
|