@kb-labs/mcp-app 2.114.0 → 2.116.11

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/bin.cjs CHANGED
@@ -84650,7 +84650,8 @@ async function loadPlatformConfig(options = {}) {
84650
84650
  `Platform config is invalid after applying overlays (${appliedOverlays.length} overlay(s)): ${detail}`
84651
84651
  );
84652
84652
  }
84653
- const effective = interpolateConfig(merged, false, env);
84653
+ const strictInterpolation = env.NODE_ENV === "production";
84654
+ const effective = interpolateConfig(merged, strictInterpolation, env);
84654
84655
  return {
84655
84656
  platformConfig: effective,
84656
84657
  rawConfig: rawProjectConfig,