oxen-website/server.js
2021-01-22 13:43:42 +11:00

24 lines
676 B
JavaScript

const { createServer } = require('https');
const { parse } = require('url');
const next = require('next');
const fs = require('graceful-fs');
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
const httpsOptions = dev && {
key: fs.readFileSync('./certificates/localhost.key'),
cert: fs.readFileSync('./certificates/localhost.crt'),
};
app.prepare().then(() => {
createServer(httpsOptions, (req, res) => {
const parsedUrl = parse(req.url, true);
handle(req, res, parsedUrl);
}).listen(3000, err => {
if (err) throw err;
console.log('🐙 Ready on https://localhost:3000');
});
});