import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], css: { // Disable all CSS source maps devSourcemap: false, }, server: { // Disable Vite's handling of the missing source map hmr: { overlay: false, }, }, })