| 12345678910111213141516171819202122 |
- /*
- * @Description:
- * @Author: zhb
- * @version:
- * @Date: 2024-09-13 13:25:59
- */
- const { createServer } = require('http');
- const { parse } = require('url');
- const next = require('next');
-
- const app = next({ dev: false });
- const handle = app.getRequestHandler();
-
- app.prepare().then(() =>
- {
- createServer((req, res) =>
- {
- // Be sure to pass `true` as the second argument to `url.parse`.
- // This tells it to parse the query portion of the URL.
- handle(req, res, parse(req.url, true));
- }).listen(30002, '0.0.0.0', () => {});
- });
|