import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vite.dev/config/ // base path alleen voor production build, lokaal blijft het op / export default defineConfig(({ command }) => ({ plugins: [react()], base: command === 'build' ? '/workshopclaudecode/' : '/', }))