Reputation: 5883
I'm developing a single page app and I want to know how to make all routes go to index?
Upvotes: 0
Views: 126
Reputation:
app.get('*', ...
if you are using express ;)
Upvotes: 2