Skip to content
Snippets Groups Projects
Commit 4735f0fa authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Silence bundle warning re eval use in new keycloak

parent 08ed9cbd
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,11 @@ export default { ...@@ -33,7 +33,11 @@ export default {
if (warning.code === 'CIRCULAR_DEPENDENCY') { if (warning.code === 'CIRCULAR_DEPENDENCY') {
return; return;
} }
//throw new Error(warning); // keycloak bundled code uses eval
if (warning.code === 'EVAL') {
return;
}
warn(warning);
}, },
watch: { watch: {
chokidar: true, chokidar: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment