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')
const { parse } = require('url')
const next = require('next')
/* eslint-disable @typescript-eslint/no-require-imports */
const { createServer } = require("http");
const next = require("next");
const { parse } = require("url");
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
const port = process.env.PORT || 3000
const port = process.env.PORT || 3000;
const dev = process.env.NODE_ENV !== "production";
const app = next({ dev });
const handle = app.getRequestHandler();
app.prepare().then(() => {
createServer((req, res) => {
const parsedUrl = parse(req.url, true)
handle(req, res, parsedUrl)
const parsedUrl = parse(req.url, true);
handle(req, res, parsedUrl);
}).listen(port, (err) => {
if (err) throw err
console.log(`> Ready on http://localhost:${port}`)
})
})
if (err) throw err;
console.log(`> Ready on http://localhost:${port}`);
});
});