5392320Interactive illustration of Floater-Hormann barycentric rational interpolationJeremy Magland 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})