Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. Required Wiring All flags need: (type) → (zod). If the flag is consumed in user-bundled code (client components, edge routes, template), also add it to for build-time injection. Runtime-only flags consumed exclusively in pre-compiled bundles can skip . Where the Flag Is Consumed Client/bundled code only (e.g. in client components): is sufficient. Webpack/Turbopack replaces at the user's build time. Pre-compiled runtime bundles (e.g. code in ): The flag must also be set as a real var at runtime,…