unforgit 0.11.7 → 0.11.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1165,7 +1165,7 @@ var webCommand = new Command10("web").description("Start the Unforgit web dashbo
1165
1165
  logger.info(`Workspace: ${cwd4}`);
1166
1166
  const hasNextBuild = fs4.existsSync(path3.join(webDir, ".next"));
1167
1167
  const cmd = hasNextBuild ? "next" : "next";
1168
- const args = hasNextBuild ? ["start", "-p", opts.port] : ["dev", "-p", opts.port];
1168
+ const args = hasNextBuild ? ["start", "-p", opts.port, "-H", "127.0.0.1"] : ["dev", "-p", opts.port, "-H", "127.0.0.1"];
1169
1169
  const nextBin = path3.join(webDir, "node_modules", ".bin", "next");
1170
1170
  const finalCmd = fs4.existsSync(nextBin) ? nextBin : cmd;
1171
1171
  const child = spawn(finalCmd, args, {