Files
IronCalc/webapp/vite.config.ts
Nicolás Hatcher a71eaf1dd7 UPDATE: Adds web app
2024-04-13 16:22:07 +02:00

15 lines
333 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import svgr from 'vite-plugin-svgr';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), svgr()],
server: {
fs: {
// Allow serving files from one level up to the project root
allow: ['..'],
},
},
});