thiagofm
thiagofm

Reputation: 5883

How to make all routes go to index?

I'm developing a single page app and I want to know how to make all routes go to index?

Upvotes: 0

Views: 126

Answers (1)

user1255808
user1255808

Reputation:

app.get('*', ...

if you are using express ;)

Upvotes: 2

Related Questions