Relative Content

Tag Archive for javascriptnext.jsrecaptchanext.js13

Env Conditional Next Script Doesn’t Work But Conditional src Works

// _document.js, doesn’t work const isProduction = process.env.NODE_ENV === “production”; const nonce = “1234-abcd-wxyz”; // … <Html lang=”en”> <Head nonce={nonce}> {isProduction && <Script async defer strategy=”afterInteractive” src={`https://www.google.com/recaptcha/api.js?render=${process.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY || “”}`} />} </Head> </Html> // _document.js, working const isProduction = process.env.NODE_ENV === “production”; const nonce = “1234-abcd-wxyz”; // … <Html lang=”en”> <Head nonce={nonce}> <Script async defer strategy=”afterInteractive” […]