@lark-apaas/fullstack-cli 1.1.59-alpha.20260719042040 → 1.1.59-alpha.20260719084243

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9185,7 +9185,11 @@ function readPreviewArtifactEnvironmentFile(filePath) {
9185
9185
  function previewArtifactRuntimeEnvironment(environment) {
9186
9186
  return {
9187
9187
  ...environment,
9188
- NODE_ENV: environment?.NODE_ENV ?? "production"
9188
+ NODE_ENV: environment?.NODE_ENV ?? "production",
9189
+ // Probe and switcher connect through 127.0.0.1. Linux may resolve
9190
+ // `localhost` to IPv6-only ::1, so the isolated Nest process must bind to
9191
+ // the same explicit private endpoint instead of inheriting app defaults.
9192
+ SERVER_HOST: "127.0.0.1"
9189
9193
  };
9190
9194
  }
9191
9195
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/fullstack-cli",
3
- "version": "1.1.59-alpha.20260719042040",
3
+ "version": "1.1.59-alpha.20260719084243",
4
4
  "description": "CLI tool for fullstack template management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",