You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I change some file, the ng serve is trying to reload/recompile in an endless loop if using the glob asset extension in angular.json:
"assets": [
{
"glob": "**/*",
"input": "node_modules/monaco-editor",
"output": "assets/monaco-editor" },
],
If I remove this then of cause the editor is not found but no issue at all with updating the files.
Using
"@angular/cli": "12.2",
"ngx-monaco-editor": "^12.0.0",
Any ideas? Is it possible to bundle also without the assets glob pattern?
The text was updated successfully, but these errors were encountered:
I had the same issue, and I have realized that by putting only the required assets fixed the issue: { "glob": "**/*", "input": "node_modules/monaco-editor/min/vs", "output": "/assets/monaco/min/vs/" }
If I change some file, the ng serve is trying to reload/recompile in an endless loop if using the glob asset extension in angular.json:
"assets": [
{
"glob": "**/*",
"input": "node_modules/monaco-editor",
"output": "assets/monaco-editor" },
],
If I remove this then of cause the editor is not found but no issue at all with updating the files.
Using
"@angular/cli": "12.2",
"ngx-monaco-editor": "^12.0.0",
Any ideas? Is it possible to bundle also without the assets glob pattern?
The text was updated successfully, but these errors were encountered: