我在next-routes
项目中使用NextJS
模块。我的路由工作正常,但是如果我很难刷新当前页面,则表达返回404错误。
我认为问题不是服务器配置良好,但是我找不到next-routes
文档中的任何信息:/
app.prepare().then(() => {
express()
.use(handler)
.listen(port);
});
我的route.js:
const routes = require('next-routes')
module.exports = routes()
.add('index', '/', 'index')
.add('register', '/inscription', 'register');
有人知道吗?
谢谢社区!