fix(nitro): Use nitro at 127.0.0.1 instead of 0.0.0.0 to prevent warning issue
This commit is contained in:
parent
a3bc76892c
commit
52d61ddc9f
@ -191,7 +191,7 @@ async function spawnNitroProcess(): Promise<void> {
|
||||
const binaryPath = path.join(binaryFolder, binaryName);
|
||||
|
||||
// Execute the binary
|
||||
subprocess = spawn(binaryPath, [1, "0.0.0.0", PORT], {
|
||||
subprocess = spawn(binaryPath, [1, "127.0.0.1", PORT], {
|
||||
cwd: binaryFolder,
|
||||
});
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user