mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 12:29:35 +01:00
43f231eca4
Corrected error with port and hostname argument and removed unneeded array.
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
require('dotenv').config();
|
|
const cli = require('next/dist/cli/next-start');
|
|
|
|
cli.nextStart({
|
|
'port': process.env.PORT || 3000,
|
|
'hostname': process.env.HOSTNAME || '0.0.0.0'
|
|
});
|