无法在角度生产环境中加载资源

时间:2016-08-25 12:22:56

标签: angularjs angular angular-cli

我正在尝试将使用angular-cli制作的应用程序添加到服务器上。我使用了ng build --environment=production命令,它没有任何错误。 ng serve命令不会引发任何错误,但是当我尝试在本地加载页面时,我在Google Chrome控制台中遇到此错误saying that it can't find the file. index.html中的路径如下所示which should be correct.

由于

1 个答案:

答案 0 :(得分:0)

我和我的图书馆有同样的问题。管理生产代码是导致问题的原因。这是角度问题,而不是你的应用程序。

这就是我们解决问题的方法:

地点:ngular-cli/addon/ng2/models/webpack-build-production.ts

new webpack.optimize.UglifyJsPlugin({
    beautify: false,
    mangle: false, // Workaround for some modules with issues when mangling
    compress: {
        screw_ie8: true,
    },
    comments: false
}),

以下是issue

的链接