Skip to content

Instantly share code, notes, and snippets.

@isaachinman
Last active March 5, 2019 14:13
Show Gist options
  • Save isaachinman/30105e3c34f3bcac2194df068d1615f0 to your computer and use it in GitHub Desktop.
Save isaachinman/30105e3c34f3bcac2194df068d1615f0 to your computer and use it in GitHub Desktop.
const express = require('express')
const next = require('next')
const nextI18NextMiddleware = require('next-i18next/middleware')
const nextI18next = require('./i18n')
const port = process.env.PORT || 3000
const app = next({ dev: process.env.NODE_ENV !== 'production' })
const handle = app.getRequestHandler();
(async () => {
await app.prepare()
const server = express()
server.use(nextI18NextMiddleware(nextI18next))
server.get('*', (req, res) => handle(req, res))
await server.listen(port)
console.log(`> Ready on http://localhost:${port}`)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment