@clerk/nextjs
Version:
Clerk SDK for NextJS
10 lines • 500 B
JavaScript
import "../chunk-BUSYA2B4.js";
import { isDevelopmentEnvironment } from "@clerk/shared/utils";
import { ENABLE_KEYLESS } from "../server/constants";
import { isNextWithUnstableServerActions } from "./sdk-versions";
const canUseKeyless = !isNextWithUnstableServerActions && // Next.js will inline the value of 'development' or 'production' on the client bundle, so this is client-safe.
isDevelopmentEnvironment() && ENABLE_KEYLESS;
export {
canUseKeyless
};
//# sourceMappingURL=feature-flags.js.map