-
Notifications
You must be signed in to change notification settings - Fork 12k
build aot failed when having lazy load #2602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
+1 |
I could never get loadChildren to work so simply as I use something like this:
and then in the test01.module file
But this might not work for |
Dupe of #2452 |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
there is a loadChildren in my project
export const routes: Routes = [
{ path: '', redirectTo: 'test01', pathMatch: 'full'},
{ path: 'test01', loadChildren: 'app/testing01/test01.module' },
when ng build --aot
exception occurred:
0% compiling can't resolve module D:/ng2/aotdemo/src/app/testing01/test01.module.ts from D:/ng2/aotdemo/src/app/testing01/test01.module.ts
can't find symbol MainModule exported from module D:/ng2/aotdemo/src/app/testing01/test01.module.ts
Error: can't find symbol MainModule exported from module D:/ng2/aotdemo/src/app/testing01/test01.module.ts
at ReflectorHost.findDeclaration (D:\Users\iminar\Dev\angular\modules@angular\compiler-cli\src\reflector_host.ts:200:15)
at _loop_1 (D:\Users\iminar\Dev\angular\modules@angular\compiler-cli\src\codegen.ts:62:45)
at CodeGenerator.readFileMetadata (D:\ng2\aotdemo\node_modules.npminstall@angular\compiler-cli\0.6.4@angular\compiler-cli\src\codegen.js:66:13)
at D:\Users\iminar\Dev\angular\modules@angular\compiler-cli\src\codegen.ts:105:56
i am using
"angular-cli": "1.0.0-beta.17",
@angular 2.0.2
The text was updated successfully, but these errors were encountered: