Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
vite.config.js 230 B
Newer Older
Raphael JOIE's avatar
Raphael JOIE committed
import { defineConfig } from 'vite'
Raphael JOIE's avatar
Raphael JOIE committed
import react from '@vitejs/plugin-react'
Raphael JOIE's avatar
Raphael JOIE committed

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react()],
  root: 'src/demo',
  build: {
    outDir: '../../dist/demo',
  },
})