-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
31 lines (26 loc) · 882 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const express = require('express')
const next = require('next')
// NextJS configuration
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
// "Prepare" NextJS server with config options for dev env, directory, configuration
app.prepare()
.then(() => {
// Set up Express server for different API routes
const server = express()
server.use(express.static(__dirname + '/public'));
server.get('*', (req, res) => {
// Express forwards requests to Next via the request handler
// All routes defined in /pages are applied and Next "takes over" the request
return 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)
})