René's URL Explorer Experiment


Title: Routing not working with AoT · Issue #2735 · angular/angular-cli · GitHub

Open Graph Title: Routing not working with AoT · Issue #2735 · angular/angular-cli

X Title: Routing not working with AoT · Issue #2735 · angular/angular-cli

Description: Please provide us with the following information: OS? Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?) macOS Sierra Versions. Please run ng --version. If there's nothing outputted, please run in a Terminal:...

Open Graph Description: Please provide us with the following information: OS? Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?) macOS Sierra Versions. Please run ng --version. If there's noth...

X Description: Please provide us with the following information: OS? Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?) macOS Sierra Versions. Please run ng --version. If there's ...

Opengraph URL: https://github.com/angular/angular-cli/issues/2735

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Routing not working with AoT","articleBody":"\u003e ## Please provide us with the following information:\n### OS?\n\n\u003e Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?)\n\nmacOS Sierra\n### Versions.\n\n\u003e Please run `ng --version`. If there's nothing outputted, please run in a Terminal: `node --version` and paste the result here:\n\nTried final beta-17 and current master\n\nangular-cli: local (v1.0.0-beta.17, branch: master)\nnode: 6.7.0\nos: darwin x64\n### Repro steps.\n\n\u003e Was this an app that wasn't created using the CLI? What change did you do on your code? etc.\n\nCreate a new project that has routes looking like this:\n\napp-routing:\n\n``` typescript\nimport {SimpleRouteComponent} from './simple-route/simple-route.component';\nimport {BundledModule} from './bundled/bundled.module';\n\nexport function loadBundledModule() { return BundledModule; }\n\nexport const routes: Routes = [\n  {\n    path: '',\n    pathMatch: 'full',\n    component: SimpleRouteComponent\n  },\n  {\n    path: 'bundled',\n    loadChildren: loadBundledModule\n  },\n  {\n    path: 'lazy',\n    loadChildren: './lazy/lazy.module#LazyModule'\n  }\n];\n```\n\nbundled-routing:\n\n``` typescript\nexport const routes: Routes = [\n  {\n    path: '',\n    component: BundledComponent\n  }\n];\n```\n\nlazy-routing:\n\n``` typescript\nexport const routes: Routes = [\n  {\n    path: '',\n    component: LazyComponent\n  }\n];\n```\n\nFull repository sample:\nhttps://github.com/meligy/routing-angular-cli\n### The log given by the failure.\n\n\u003e Normally this include a stack trace and some more information.\n\nFirst, I run `ng build --aot`, and it shows successful output.\n\nThen, I run `ng serve --aot`, and it also shows successful output.\n#### Loading `/`\n\nBut then I go to `http://localhost:4200/`, I see the page loading fine (the page content shows `simple-route works!`), but in the browser console I see this error:\n\n```\nchrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:34621 Uncaught TypeError: Cannot read property 'get' of null\n    at bind (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:34621:32)\n    at Array.forEach (native)\n    at chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:34637:34\n    at checkDebug (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:34633:10)\n    at Object.\u003canonymous\u003e (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:34636:2)\n    at Object.\u003canonymous\u003e (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:34812:31)\n    at __webpack_require__ (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:20:30)\n    at Object.\u003canonymous\u003e (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:47:19)\n    at __webpack_require__ (chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:20:30)\n    at chrome-extension://elgalmkoelokbchhkhacckoklkejnhcd/build/backend.js:40:18\n```\n#### Synchronous Loading (Same bundle) `/bundled`\n\nIf I click on a router link that goes to `http://localhost:4200/bundled`, I get extra errors in the browser console, and the URL stays at `http://localhost:4200/`. Extra errors shown:\n\n```\n2016-10-17 13:20:59.886 error_handler.js:48 EXCEPTION: Uncaught (in promise): TypeError: r.create is not a function\nErrorHandler.handleError @ error_handler.js:48\nnext @ application_ref.js:298\nschedulerFn @ async.js:89\nSafeSubscriber.__tryOrUnsub @ Subscriber.js:223\nSafeSubscriber.next @ Subscriber.js:172\nSubscriber._next @ Subscriber.js:125\nSubscriber.next @ Subscriber.js:89\nSubject.next @ Subject.js:55\nEventEmitter.emit @ async.js:81\nNgZone.triggerError @ ng_zone.js:280\nonHandleError @ ng_zone.js:259\nZone.runGuarded @ zone.js:113\n_loop_1 @ zone.js:379\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:20:59.886 error_handler.js:53 ORIGINAL STACKTRACE:\nErrorHandler.handleError @ error_handler.js:53\nnext @ application_ref.js:298\nschedulerFn @ async.js:89\nSafeSubscriber.__tryOrUnsub @ Subscriber.js:223\nSafeSubscriber.next @ Subscriber.js:172\nSubscriber._next @ Subscriber.js:125\nSubscriber.next @ Subscriber.js:89\nSubject.next @ Subject.js:55\nEventEmitter.emit @ async.js:81\nNgZone.triggerError @ ng_zone.js:280\nonHandleError @ ng_zone.js:259\nZone.runGuarded @ zone.js:113\n_loop_1 @ zone.js:379\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:20:59.886 error_handler.js:54 Error: Uncaught (in promise): TypeError: r.create is not a function\n    at resolvePromise (zone.js:429)\n    at zone.js:406\n    at Object.onInvoke (ng_zone.js:238)\n    at Zone.run (zone.js:96)\n    at zone.js:462\n    at ZoneDelegate.invokeTask (zone.js:236)\n    at Object.onInvokeTask (ng_zone.js:229)\n    at ZoneDelegate.invokeTask (zone.js:235)\n    at Zone.runTask (zone.js:136)\n    at drainMicroTaskQueue (zone.js:368)\nErrorHandler.handleError @ error_handler.js:54\nnext @ application_ref.js:298\nschedulerFn @ async.js:89\nSafeSubscriber.__tryOrUnsub @ Subscriber.js:223\nSafeSubscriber.next @ Subscriber.js:172\nSubscriber._next @ Subscriber.js:125\nSubscriber.next @ Subscriber.js:89\nSubject.next @ Subject.js:55\nEventEmitter.emit @ async.js:81\nNgZone.triggerError @ ng_zone.js:280\nonHandleError @ ng_zone.js:259\nZone.runGuarded @ zone.js:113\n_loop_1 @ zone.js:379\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:20:59.887 zone.js:355 Unhandled Promise rejection: r.create is not a function ; Zone: angular ; Task: Promise.then ; Value: TypeError: r.create is not a function\n    at MapSubscriber.project (router_config_loader.js:46)\n    at MapSubscriber._next (map.js:77)\n    at MapSubscriber.Subscriber.next (Subscriber.js:89)\n    at MergeMapSubscriber.notifyNext (mergeMap.js:133)\n    at InnerSubscriber._next (InnerSubscriber.js:23)\n    at InnerSubscriber.Subscriber.next (Subscriber.js:89)\n    at Object.subscribeToResult (subscribeToResult.js:16)\n    at MergeMapSubscriber._innerSub (mergeMap.js:120)\n    at MergeMapSubscriber._tryNext (mergeMap.js:117)\n    at MergeMapSubscriber._next (mergeMap.js:100) TypeError: r.create is not a function\n    at MapSubscriber.project (http://localhost:4200/main.bundle.js:9952:25)\n    at MapSubscriber._next (http://localhost:4200/main.bundle.js:14417:35)\n    at MapSubscriber.Subscriber.next (http://localhost:4200/main.bundle.js:3004:18)\n    at MergeMapSubscriber.notifyNext (http://localhost:4200/main.bundle.js:10204:30)\n    at InnerSubscriber._next (http://localhost:4200/main.bundle.js:43255:21)\n    at InnerSubscriber.Subscriber.next (http://localhost:4200/main.bundle.js:3004:18)\n    at Object.subscribeToResult (http://localhost:4200/main.bundle.js:21714:25)\n    at MergeMapSubscriber._innerSub (http://localhost:4200/main.bundle.js:10191:38)\n    at MergeMapSubscriber._tryNext (http://localhost:4200/main.bundle.js:10188:14)\n    at MergeMapSubscriber._next (http://localhost:4200/main.bundle.js:10171:18)\nconsoleError @ zone.js:355\n_loop_1 @ zone.js:382\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:20:59.888 zone.js:357 Error: Uncaught (in promise): TypeError: r.create is not a function\n    at resolvePromise (zone.js:429)\n    at zone.js:406\n    at Object.onInvoke (ng_zone.js:238)\n    at Zone.run (zone.js:96)\n    at zone.js:462\n    at ZoneDelegate.invokeTask (zone.js:236)\n    at Object.onInvokeTask (ng_zone.js:229)\n    at ZoneDelegate.invokeTask (zone.js:235)\n    at Zone.runTask (zone.js:136)\n    at drainMicroTaskQueue (zone.js:368)\n```\n#### Lazy Loading `/lazy`\n\nIf I then refresh, and click on the router link that goes to `http://localhost:4200/lazy`, again, the URL stays at `http://localhost:4200/`, and I get another error:\n\n```\n2016-10-17 13:22:45.339 error_handler.js:48 EXCEPTION: Uncaught (in promise): Error: Cannot find module './lazy/lazy.module.ngfactory'.\nErrorHandler.handleError @ error_handler.js:48\nnext @ application_ref.js:298\nschedulerFn @ async.js:89\nSafeSubscriber.__tryOrUnsub @ Subscriber.js:223\nSafeSubscriber.next @ Subscriber.js:172\nSubscriber._next @ Subscriber.js:125\nSubscriber.next @ Subscriber.js:89\nSubject.next @ Subject.js:55\nEventEmitter.emit @ async.js:81\nNgZone.triggerError @ ng_zone.js:280\nonHandleError @ ng_zone.js:259\nZone.runGuarded @ zone.js:113\n_loop_1 @ zone.js:379\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:22:45.340 error_handler.js:53 ORIGINAL STACKTRACE:\nErrorHandler.handleError @ error_handler.js:53\nnext @ application_ref.js:298\nschedulerFn @ async.js:89\nSafeSubscriber.__tryOrUnsub @ Subscriber.js:223\nSafeSubscriber.next @ Subscriber.js:172\nSubscriber._next @ Subscriber.js:125\nSubscriber.next @ Subscriber.js:89\nSubject.next @ Subject.js:55\nEventEmitter.emit @ async.js:81\nNgZone.triggerError @ ng_zone.js:280\nonHandleError @ ng_zone.js:259\nZone.runGuarded @ zone.js:113\n_loop_1 @ zone.js:379\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:22:45.340 error_handler.js:54 Error: Uncaught (in promise): Error: Cannot find module './lazy/lazy.module.ngfactory'.\n    at resolvePromise (zone.js:429)\n    at zone.js:406\n    at Object.onInvoke (ng_zone.js:238)\n    at Zone.run (zone.js:96)\n    at zone.js:462\n    at ZoneDelegate.invokeTask (zone.js:236)\n    at Object.onInvokeTask (ng_zone.js:229)\n    at ZoneDelegate.invokeTask (zone.js:235)\n    at Zone.runTask (zone.js:136)\n    at drainMicroTaskQueue (zone.js:368)\nErrorHandler.handleError @ error_handler.js:54\nnext @ application_ref.js:298\nschedulerFn @ async.js:89\nSafeSubscriber.__tryOrUnsub @ Subscriber.js:223\nSafeSubscriber.next @ Subscriber.js:172\nSubscriber._next @ Subscriber.js:125\nSubscriber.next @ Subscriber.js:89\nSubject.next @ Subject.js:55\nEventEmitter.emit @ async.js:81\nNgZone.triggerError @ ng_zone.js:280\nonHandleError @ ng_zone.js:259\nZone.runGuarded @ zone.js:113\n_loop_1 @ zone.js:379\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:22:45.340 zone.js:355 Unhandled Promise rejection: Cannot find module './lazy/lazy.module.ngfactory'. ; Zone: angular ; Task: Promise.then ; Value: Error: Cannot find module './lazy/lazy.module.ngfactory'.\n    at webpackEmptyContext (src async:2)\n    at SystemJsNgModuleLoader.loadFactory (system_js_ng_module_factory_loader.js:61)\n    at RouterConfigLoader.loadModuleFactory (router_config_loader.js:53)\n    at RouterConfigLoader.load (router_config_loader.js:45)\n    at MergeMapSubscriber.project (apply_redirects.js:246)\n    at MergeMapSubscriber._tryNext (mergeMap.js:110)\n    at MergeMapSubscriber._next (mergeMap.js:100)\n    at MergeMapSubscriber.Subscriber.next (Subscriber.js:89)\n    at ScalarObservable._subscribe (ScalarObservable.js:49)\n    at ScalarObservable.Observable.subscribe (Observable.js:56) Error: Cannot find module './lazy/lazy.module.ngfactory'.\n    at webpackEmptyContext (http://localhost:4200/main.bundle.js:31955:8)\n    at SystemJsNgModuleLoader.loadFactory (http://localhost:4200/main.bundle.js:25415:40)\n    at RouterConfigLoader.loadModuleFactory (http://localhost:4200/main.bundle.js:9959:128)\n    at RouterConfigLoader.load (http://localhost:4200/main.bundle.js:9951:81)\n    at MergeMapSubscriber.project (http://localhost:4200/main.bundle.js:38688:111)\n    at MergeMapSubscriber._tryNext (http://localhost:4200/main.bundle.js:10181:27)\n    at MergeMapSubscriber._next (http://localhost:4200/main.bundle.js:10171:18)\n    at MergeMapSubscriber.Subscriber.next (http://localhost:4200/main.bundle.js:3004:18)\n    at ScalarObservable._subscribe (http://localhost:4200/main.bundle.js:30856:24)\n    at ScalarObservable.Observable.subscribe (http://localhost:4200/main.bundle.js:1018:27)\nconsoleError @ zone.js:355\n_loop_1 @ zone.js:382\ndrainMicroTaskQueue @ zone.js:386\nZoneTask.invoke @ zone.js:308\n2016-10-17 13:22:45.341 zone.js:357 Error: Uncaught (in promise): Error: Cannot find module './lazy/lazy.module.ngfactory'.\n    at resolvePromise (zone.js:429)\n    at zone.js:406\n    at Object.onInvoke (ng_zone.js:238)\n    at Zone.run (zone.js:96)\n    at zone.js:462\n    at ZoneDelegate.invokeTask (zone.js:236)\n    at Object.onInvokeTask (ng_zone.js:229)\n    at ZoneDelegate.invokeTask (zone.js:235)\n    at Zone.runTask (zone.js:136)\n    at drainMicroTaskQueue (zone.js:368)\n```\n### Mention any other details that might be useful.\n\nI tried commenting different pieces of the routing but always get some sort of error. Also tried upgrading all Angular packages including @angular/router, @angular/compiler, @angular/platform-server and zone.js and ts-helpers to latest with no luck getting a clean browser console output.\n\n\u003e ---\n\u003e \n\u003e Thanks! We'll be in touch soon.\n","author":{"url":"https://github.com/Meligy","@type":"Person","name":"Meligy"},"datePublished":"2016-10-17T02:27:11.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":12},"url":"https://github.com/2735/angular-cli/issues/2735"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:b25441d0-828a-025d-852b-25485293c99f
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id86A8:3C6258:13A6E3F:1968706:6976E129
html-safe-nonce2bfa9eaaf321d9bc4a5891036762121c5b04514a0cbd2460d39e52a038e68802
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NkE4OjNDNjI1ODoxM0E2RTNGOjE5Njg3MDY6Njk3NkUxMjkiLCJ2aXNpdG9yX2lkIjoiNjM1MzcxMzI3MDcxMTgzNjk2OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacaf885c6060d9677d033894670104a0c810066287485e462416c7245ac14d56e3
hovercard-subject-tagissue:183312127
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/angular/angular-cli/2735/issue_layout
twitter:imagehttps://opengraph.githubassets.com/ac71a9e396824182cea10ad3b04084e86dbf1e9b3a1fbc147b5b1efd51ec8220/angular/angular-cli/issues/2735
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/ac71a9e396824182cea10ad3b04084e86dbf1e9b3a1fbc147b5b1efd51ec8220/angular/angular-cli/issues/2735
og:image:altPlease provide us with the following information: OS? Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?) macOS Sierra Versions. Please run ng --version. If there's noth...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameMeligy
hostnamegithub.com
expected-hostnamegithub.com
None01d198479908d09a841b2febe8eb105a81af2af7d81830960fe0971e1f4adc09
turbo-cache-controlno-preview
go-importgithub.com/angular/angular-cli git https://github.com/angular/angular-cli.git
octolytics-dimension-user_id139426
octolytics-dimension-user_loginangular
octolytics-dimension-repository_id36891867
octolytics-dimension-repository_nwoangular/angular-cli
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id36891867
octolytics-dimension-repository_network_root_nwoangular/angular-cli
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef752335dbbea672610081196a1998e39aec5e14b
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/angular/angular-cli/issues/2735#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fangular%2Fangular-cli%2Fissues%2F2735
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fangular%2Fangular-cli%2Fissues%2F2735
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=angular%2Fangular-cli
Reloadhttps://github.com/angular/angular-cli/issues/2735
Reloadhttps://github.com/angular/angular-cli/issues/2735
Reloadhttps://github.com/angular/angular-cli/issues/2735
angular https://github.com/angular
angular-clihttps://github.com/angular/angular-cli
Notifications https://github.com/login?return_to=%2Fangular%2Fangular-cli
Fork 11.9k https://github.com/login?return_to=%2Fangular%2Fangular-cli
Star 27k https://github.com/login?return_to=%2Fangular%2Fangular-cli
Code https://github.com/angular/angular-cli
Issues 265 https://github.com/angular/angular-cli/issues
Pull requests 30 https://github.com/angular/angular-cli/pulls
Actions https://github.com/angular/angular-cli/actions
Security 1 https://github.com/angular/angular-cli/security
Insights https://github.com/angular/angular-cli/pulse
Code https://github.com/angular/angular-cli
Issues https://github.com/angular/angular-cli/issues
Pull requests https://github.com/angular/angular-cli/pulls
Actions https://github.com/angular/angular-cli/actions
Security https://github.com/angular/angular-cli/security
Insights https://github.com/angular/angular-cli/pulse
New issuehttps://github.com/login?return_to=https://github.com/angular/angular-cli/issues/2735
New issuehttps://github.com/login?return_to=https://github.com/angular/angular-cli/issues/2735
#2992https://github.com/angular/angular-cli/pull/2992
Routing not working with AoThttps://github.com/angular/angular-cli/issues/2735#top
#2992https://github.com/angular/angular-cli/pull/2992
P1Impacts a large percentage of users; if a workaround exists it is partial or overly painfulhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22P1%22
needs: investigationRequires some digging to determine if action is neededhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22needs%3A%20investigation%22
type: bug/fixhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%2Ffix%22
https://github.com/Meligy
https://github.com/Meligy
Meligyhttps://github.com/Meligy
on Oct 17, 2016https://github.com/angular/angular-cli/issues/2735#issue-183312127
https://github.com/meligy/routing-angular-clihttps://github.com/meligy/routing-angular-cli
P1Impacts a large percentage of users; if a workaround exists it is partial or overly painfulhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22P1%22
needs: investigationRequires some digging to determine if action is neededhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22needs%3A%20investigation%22
type: bug/fixhttps://github.com/angular/angular-cli/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%2Ffix%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.