Last active
September 8, 2019 04:12
-
-
Save nathanqueija/6273c245f2b46a2417dafa21b7df7692 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const { parse } = require('url'); | |
const next = require('next'); | |
const dev = process.env.NODE_ENV !== 'production'; | |
const app = next({ dev }); | |
const handle = app.getRequestHandler(); | |
app.prepare() | |
.then(() => { | |
const server = express(); | |
server.get('/talkwithus/:operation/:slug', (req, res) => { | |
console.log(req.params); | |
return app.render(req, res, '/talkwithus/template', req.query); | |
}) | |
server.get('*', (req, res) => handle(req, res)); | |
server.listen(3000, (err) => { | |
if (err) throw err; | |
console.log('> Server rodando em http://localhost:3000'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment