refactor: remove unnecessary eslint disable and reformat server configuration for consistency

This commit is contained in:
sazzadulalambd
2026-06-22 21:46:04 +06:00
parent 8c59ac9944
commit cd156b0ff4

View File

@@ -1,19 +1,19 @@
/* eslint-disable @typescript-eslint/no-require-imports */ const { createServer } = require('http')
const { createServer } = require("http"); const { parse } = require('url')
const next = require("next"); const next = require('next')
const { parse } = require("url");
const port = process.env.PORT || 3000; const dev = process.env.NODE_ENV !== 'production'
const dev = process.env.NODE_ENV !== "production"; const app = next({ dev })
const app = next({ dev }); const handle = app.getRequestHandler()
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}`)
}); })
}); })