/ concept-collection / qhull-wasm-demo
Sign in
concept-collection / qhull-wasm-demo
qhull-wasm-demo / vite.config.ts
9 lines · 237 BCodeBlameHistory
283cae2qhull-wasm demo: 2D/3D triangulation, convex hull, and Delaunay benchmarksJeremy Magland 1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
4// https://vite.dev/config/
5export default defineConfig({
6 plugins: [react()],
d3bed11Use a relative base so the build works at any mount pointowner 7 // Relative base, so the build works wherever it is mounted
8 base: './',
moveopenescclose