refactor: apply linting rules and consistent formatting to server configuration
This commit is contained in:
28
server.js
28
server.js
@@ -1,19 +1,19 @@
|
|||||||
const { createServer } = require('http')
|
/* eslint-disable @typescript-eslint/no-require-imports */
|
||||||
const { parse } = require('url')
|
const { createServer } = require("http");
|
||||||
const next = require('next')
|
const next = require("next");
|
||||||
|
const { parse } = require("url");
|
||||||
|
|
||||||
const dev = process.env.NODE_ENV !== 'production'
|
const port = process.env.PORT || 3000;
|
||||||
const app = next({ dev })
|
const dev = process.env.NODE_ENV !== "production";
|
||||||
const handle = app.getRequestHandler()
|
const app = next({ dev });
|
||||||
|
const handle = app.getRequestHandler();
|
||||||
const port = process.env.PORT || 3000
|
|
||||||
|
|
||||||
app.prepare().then(() => {
|
app.prepare().then(() => {
|
||||||
createServer((req, res) => {
|
createServer((req, res) => {
|
||||||
const parsedUrl = parse(req.url, true)
|
const parsedUrl = parse(req.url, true);
|
||||||
handle(req, res, parsedUrl)
|
handle(req, res, parsedUrl);
|
||||||
}).listen(port, (err) => {
|
}).listen(port, (err) => {
|
||||||
if (err) throw err
|
if (err) throw err;
|
||||||
console.log(`> Ready on http://localhost:${port}`)
|
console.log(`> Ready on http://localhost:${port}`);
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
Reference in New Issue
Block a user