我有一个简单的模块
import { provideRouter } from "@ngrx/router";
@NgModule({
imports : [
BrowserModule
],
declarations: [
MyApp
],
providers : [
provideRouter(routes)
],
bootstrap : [MyApp]
})
export class RootModule {
}
但是现在我在构建项目时出错了。
TypeError: Cannot read property 'substr' of undefined
在RC4上一切正常。我还没有在github上找到任何关于它的错误报告。也许我应该以其他方式做到这一点?