We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbaec3b commit aed8601Copy full SHA for aed8601
crates/next-core/src/next_config.rs
@@ -1729,6 +1729,9 @@ impl NextConfig {
1729
&self,
1730
env: Vc<Box<dyn ProcessEnv>>,
1731
) -> Result<Vc<ReqwestClientConfig>> {
1732
+ // Support both an env var and the experimental flag to provide more flexibility to
1733
+ // developers on locked down systems, depending on if they want to configure this on a
1734
+ // per-system or per-project basis.
1735
let use_system_tls_certs = env
1736
.read(rcstr!("NEXT_TURBOPACK_EXPERIMENTAL_USE_SYSTEM_TLS_CERTS"))
1737
.await?
0 commit comments