Answer the question
In order to leave comments, you need to log in
How to correctly make a 404 error?
there is react routing
<Route path="/" component={App}>
<IndexRoute component={HomePage} />
<Route path="about" component={AboutPage} />
<Route path="admin" component={AdminPage} />
<Route path="*" component={notFound} />
</Route>
app.get('*', function (req, res) {
res.sendFile(path.join(__dirname, '/../dist/index.html'))
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question