Last active
March 5, 2019 14:13
-
-
Save isaachinman/30105e3c34f3bcac2194df068d1615f0 to your computer and use it in GitHub Desktop.
This file contains 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 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