Last active
April 21, 2023 08:59
-
-
Save alexdiliberto/9948140 to your computer and use it in GitHub Desktop.
List all Ember route paths. (Just paste this in the console of your favorite Ember app)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NOTE: `AppName` is simply your PascalCase application name (`modulePrefix` key from `../config/environment.js`) | |
window.AppName.__container__.lookup('service:router')._router._routerMicrolib.recognizer.names; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have
ember-export-application-global
? It’s turned off by default in a production environment.