File size: 338 Bytes
dca8ede
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// This file starts the Next.js application with proper hostname binding
// It should be copied to the .next/standalone directory

// Force binding to all network interfaces
process.env.HOSTNAME = '0.0.0.0';
process.env.HOST = '0.0.0.0';
process.env.PORT = process.env.PORT || '3000';

// Load Next.js server code
require('./server.js');