1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fix url typo (#3111)

This commit is contained in:
Stephen Daves 2017-10-16 15:28:25 -04:00 committed by Tim Neutkens
parent ae44109f6d
commit b7406e90c5

View file

@ -11,7 +11,7 @@ app.prepare()
const server = fastify()
server.get('/a', (req, res) => {
return app.render(req.req, res.res, '/b', req.query)
return app.render(req.req, res.res, '/a', req.query)
})
server.get('/b', (req, res) => {