blob: 240435e56ac21257a005a6f3b9b7dca958c9ee5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
const next = require('next');
const https = require('https');
const fs = require('fs');
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
app.prepare().then(() => {
https.createServer({
key: fs.readFileSync('./localhost-key.pem'),
cert: fs.readFileSync('./localhost.pem'),
}, (req, res) => {
handle(req, res);
}).listen(3000, (err) => {
if (err) throw err;
console.log('> Ready on https://localhost:3000');
});
});
|