/ concept-collection / ans-visualizer
Sign in
concept-collection / ans-visualizer
ans-visualizer / vite.config.ts
9 lines · 237 BCodeBlameHistory
8109486initialJeremy Magland 1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
4// https://vite.dev/config/
5export default defineConfig({
6 plugins: [react()],
459a4f7Use a relative base so the build works at any mount pointowner 7 // Relative base, so the build works wherever it is mounted
8 base: './',
8109486initialJeremy Magland 9})
moveopenescclose