|
- // const { createServer } = require("http");
- // const { parse } = require("url");
- // const next = require("next");
- const cli = require("next/dist/cli/next-start");
- // const dev = process.env.NODE_ENV !== "production";
- // const app = next({ dev });
- // const handle = app.getRequestHandler();
- require("dotenv").config();
-
- const port = process.env.PORT || "14009";
-
- // app.prepare().then(() => {
- // createServer((req, res) => {
- // const parsedUrl = parse(req.url, true);
- // const { pathname, query } = parsedUrl;
- // // if (!pathname.includes("_next")) {
- // console.log(pathname);
- // // app.render(req, res, pathname, query);
- // // }
- // app.render(req, res, "/abous_us/aboutus", query);
- // }).listen(port, (err) => {
- // if (err) throw err;
- // console.log(`Ready on port ${port}`);
- // });
- // });
-
- cli.nextStart(["-p", port]);
|