Update hospital-portal

This commit is contained in:
ivan
2023-07-31 11:32:25 +07:00
parent 786a0a24b3
commit 0a214723cb
2 changed files with 25 additions and 1 deletions

View File

@@ -10,6 +10,14 @@ export default defineConfig({
// comment this out if that isn't relevant for your project
build: {
outDir: 'build',
chunkSizeWarningLimit: 100,
rollupOptions: {
onwarn(warning, warn) {
if (warning.code === 'MODULE_LEVEL_DIRECTIVE') {
return
}
warn(warning)
}}
},
plugins: [
react(),