1

我面临一个奇怪的问题,想知道你们中的一些人是否也面临同样的问题。我们实际上正在使用本教程使用 @angular7 和 @angular/elements 制作自定义元素库:https ://medium.com/@aks1357/getting-started-with-angular-elements-d13a967b03df

问题是,它在运行时工作得非常好,ng serve但是一旦我们使用我们的库构建应用程序,ng build --prod我们就会开始收到关于正则表达式或超出最大堆栈调用大小的错误。

我发现问题在于在生产模式下将优化标志设置为 true。但我不明白为什么缩小代码会破坏事情。

你们中有人遇到过这个问题吗?

不幸的是,我不能分享代码,因为你好 NDA。

4

2 回答 2

1

I face this issue two times it could help you.

1st scenario There is a recursive function with the wrong base case

Second scenario is accidentally import same file two times

于 2019-08-22T01:46:40.727 回答
-1

不是解决方案,而是解决方法。

使用 --aot=false 和 --buildOptimizer=false 编译您的项目。

于 2019-08-22T01:28:11.563 回答