Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created August 17, 2019 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/1896505efb25d17d638ac8da98afa5e5 to your computer and use it in GitHub Desktop.
Save luandevpro/1896505efb25d17d638ac8da98afa5e5 to your computer and use it in GitHub Desktop.
const express = require('express');
const next = require('next');
require('dotenv').config();
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
app
.prepare()
.then(() => {
const server = express();
server.get('*', (req, res) => handle(req, res));
server.listen(3000, (err) => {
if (err) throw err;
console.log('> Ready on http://localhost:3000');
});
})
.catch((ex) => {
console.error(ex.stack);
process.exit(1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment