refactor: apply linting rules and consistent formatting to server configuration

This commit is contained in:
sazzadulalambd
2026-06-22 21:20:05 +06:00
parent 637e46b76f
commit 8c59ac9944

View File

@@ -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}`);
}) });
}) });