我刚刚安装了最新版本的Angular CLI(1.5.0)并使用" ng newproject"创建了一个全新的Angular 5项目。 我可以毫无问题地运行项目。 但后来我建了它:
ng build --target = production --environment = prod -aot false --base-href " / testproject /"
这没有问题。但是当我尝试执行结果时,我得到一个角度误差,我不明白:
Uncaught Error: Unexpected value 'e' imported by the module 'e'. Please add a @NgModule annotation.
at c (main.cc62ca12538e9fa026de.bundle.js:1)
at main.cc62ca12538e9fa026de.bundle.js:1
at Array.forEach (<anonymous>)
at e.getNgModuleMetadata (main.cc62ca12538e9fa026de.bundle.js:1)
at e._loadModules (main.cc62ca12538e9fa026de.bundle.js:1)
at e._compileModuleAndComponents (main.cc62ca12538e9fa026de.bundle.js:1)
at e.compileModuleAsync (main.cc62ca12538e9fa026de.bundle.js:1)
at e.compileModuleAsync (main.cc62ca12538e9fa026de.bundle.js:1)
at e.LMZF.e.bootstrapModule (main.cc62ca12538e9fa026de.bundle.js:1)
at Object.cDNt (main.cc62ca12538e9fa026de.bundle.js:1)
我完全不知道问题出在哪里。我没有更改项目中的单行代码。这正是CLI生成的内容。 如果我只是&#34; npm开始&#34;我的新项目有效。但是内置版本没有。
任何提案?