2018-08-07 03:19:16 +00:00
|
|
|
const express = require('express')
|
|
|
|
const next = require('next')
|
|
|
|
const csp = require('./csp')
|
|
|
|
|
|
|
|
const port = parseInt(process.env.PORT, 10) || 3000
|
|
|
|
const dev = process.env.NODE_ENV !== 'production'
|
|
|
|
const app = next({ dev })
|
|
|
|
const handle = app.getRequestHandler()
|
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
app.prepare().then(() => {
|
|
|
|
const server = express()
|
2018-08-07 03:19:16 +00:00
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
csp(server)
|
2018-08-07 03:19:16 +00:00
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
server.use(handle)
|
2018-08-07 03:19:16 +00:00
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
server.listen(port, err => {
|
|
|
|
if (err) throw err
|
|
|
|
console.log(`> Ready on http://localhost:${port}`)
|
2018-08-07 03:19:16 +00:00
|
|
|
})
|
2018-12-17 16:34:32 +00:00
|
|
|
})
|