0
votes

I upgrade from ember rc1 to rc3. Now I'm receiving "Uncaught Error: No route matched the URL'' " when navigating to localhost root. My relevant router code (pretty standard) is below. Did something change with the router from rc1 to rc3? I couldn't find any changes in the documentation to indicate what might be wrong. Thanks for any help.

App.Router.map ->
  @route 'index'
1

1 Answers

0
votes

Just remove the index route from your router map.

App.Router.map(function (){ });