2022-06-27 19:34:03 +02:00
|
|
|
require('dotenv').config();
|
2020-10-01 07:56:23 +02:00
|
|
|
const cli = require('next/dist/cli/next-start');
|
|
|
|
|
2023-09-29 17:22:11 +02:00
|
|
|
cli.nextStart({
|
|
|
|
'--port': process.env.PORT || 3000,
|
|
|
|
'--hostname': process.env.HOSTNAME || '0.0.0.0',
|
|
|
|
_: [],
|
|
|
|
});
|