@insforge/cli 0.1.25 → 0.1.26

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
@@ -2218,6 +2218,7 @@ async function downloadGitHubTemplate(templateName, projectConfig, json) {
2218
2218
  const key = prefix.slice(0, -1);
2219
2219
  if (/INSFORGE.*(URL|BASE_URL)$/.test(key)) return `${prefix}${projectConfig.oss_host}`;
2220
2220
  if (/INSFORGE.*ANON_KEY$/.test(key)) return `${prefix}${anonKey}`;
2221
+ if (key === "NEXT_PUBLIC_APP_URL") return `${prefix}https://${projectConfig.appkey}.insforge.site`;
2221
2222
  return `${prefix}${_value}`;
2222
2223
  }
2223
2224
  );