2017-08-10 18:15:46 +00:00
|
|
|
const port = parseInt(process.env.PORT, 10) || 3000
|
2017-03-05 01:47:56 +00:00
|
|
|
const dev = process.env.NODE_ENV !== 'production'
|
|
|
|
|
2018-01-31 09:07:52 +00:00
|
|
|
require('@zeit/next-preact/alias')()
|
2017-03-05 01:47:56 +00:00
|
|
|
|
|
|
|
const { createServer } = require('http')
|
|
|
|
const { parse } = require('url')
|
|
|
|
const next = require('next')
|
|
|
|
|
|
|
|
const app = next({ dev })
|
|
|
|
const handle = app.getRequestHandler()
|
|
|
|
|
|
|
|
app.prepare()
|
2018-03-27 18:11:03 +00:00
|
|
|
.then(() => {
|
|
|
|
createServer((req, res) => {
|
|
|
|
const parsedUrl = parse(req.url, true)
|
|
|
|
handle(req, res, parsedUrl)
|
|
|
|
})
|
|
|
|
.listen(port, (err) => {
|
|
|
|
if (err) throw err
|
|
|
|
console.log(`> Ready on http://localhost:${port}`)
|
|
|
|
})
|
2017-03-05 01:47:56 +00:00
|
|
|
})
|