TypeError:在角度6 prod构建后未定义c.push

时间:2018-06-07 09:44:03

标签: angular angular-cli angular-cli-v6

我正在尝试使用以下命令构建我的Angular 6应用程序(我使用的是6.0.4 Angular版本和6.0.8 Angular CLI版本):

class Window(Qt3DExtras.Qt3DWindow):
    def __init__(self):
        super().__init__()

        self.camera().lens().setPerspectiveProjection(90, 1, .1, 5000)
        self.root_entity = Qt3DCore.QEntity()

        self.axes = Axes(self.root_entity)
        self.text = None

    def add_entity(self):
        self.text = Text(self.root_entity)

一切正常,但是当我尝试显示构建应用程序时,我的Web控制台出现以下错误:

  

TypeError:c.push未定义(runtime.6afe30102d8fe7337431.js:1:964)

     

TypeError :(中间值).push不是函数(polyfills.2903ad11212d7d797800.js:1:2)

     

TypeError :(中间值).push不是函数(main.3a04e0ee25d4464aa7c8.js:1:2)

不明白为什么我的应用可以正常使用ng build --prod ,但不能使用prod build

1 个答案:

答案 0 :(得分:0)

这不是角度或角度/ cli错误。此错误是由使用Webpack版本小于4的另一个脚本/应用程序引起的。