/ concept-collection / mri-scanner
Sign in
concept-collection / mri-scanner
mri-scanner / vite.config.ts
12 lines · 315 BCodeBlameHistory
5f2d2b3mri-scanner: in-browser Bloch simulation of pulseq sequencesJeremy Magland 1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
4// base: './' so the built app works when served from a GitHub Pages subpath
5// (https://concept-collection.github.io/mri-scanner/).
6export default defineConfig({
7 base: './',
8 plugins: [react()],
9 worker: {
10 format: 'es',
11 },
12})
moveopenescclose