fix: Ignores ResizeObserver errors in development mode (#24868)
This commit is contained in:
parent
44e4fb1090
commit
434db0d686
|
|
@ -512,7 +512,11 @@ if (isDevMode) {
|
|||
() => proxyConfig,
|
||||
],
|
||||
client: {
|
||||
overlay: { errors: true, warnings: false },
|
||||
overlay: {
|
||||
errors: true,
|
||||
warnings: false,
|
||||
runtimeErrors: error => !/ResizeObserver/.test(error.message),
|
||||
},
|
||||
logging: 'error',
|
||||
},
|
||||
static: path.join(process.cwd(), '../static/assets'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue