import{defineConfig}from'vite'importreactfrom'@vitejs/plugin-react'exportdefaultdefineConfig({plugins:[react()],css:{// Disable all CSS source mapsdevSourcemap:false,},server:{// Disable Vite's handling of the missing source maphmr:{overlay:false,},},})