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
My primary concern is that Angular is taking minified GoJS code and re-minifying it, which is introducing a problem. There's nothing like "$" or '$' in our minified code, so my suspicion is Angular somehow added that.
Is there some way you can specify a list of libraries (they might have called it something like vendors), in Angular 13, that avoids the optimization step? It may not be an Angular specific option but a Webpack option (or whatever Angular 13 uses for bundling)
I'm running Angular 13 and I am seeing a an error ONLY when building my Angular project with optimization set to true. The error:
ERROR ReferenceError: Must call super constructor in derived class before access 'this' or returning from derived constructor
Here are screenshots of the error and the Console Source.
If I disable optimization it goes away, but this negatively impacts my production application's performance.
The text was updated successfully, but these errors were encountered: