/ concept-collection / barycentric-rational
Sign in
concept-collection / barycentric-rational
barycentric-rational / vite.config.ts
11 lines · 374 BBlameHistoryRaw
1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
4export default defineConfig({
5 plugins: [react()],
6 // relative base so the same build works at the repository root and under
7 // /barycentric-rational/ on GitHub Pages
8 base: './',
9 // .m files are pulled in with ?raw; tell vite they are assets, not modules
10 assetsInclude: ['**/*.m'],
11})
moveopenescclose