File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ import process from 'process'
33
44import build from '@netlify/build'
55
6+ import { isFeatureFlagEnabled } from '../utils/feature-flags.mjs'
7+
68import { getBootstrapURL } from './edge-functions/bootstrap.mjs'
79import { featureFlags as edgeFunctionsFeatureFlags } from './edge-functions/consts.mjs'
810
@@ -58,7 +60,7 @@ export const getBuildOptions = ({
5860const getFeatureFlagsFromSiteInfo = ( siteInfo ) => ( {
5961 ...siteInfo . feature_flags ,
6062 // see https://github.com/netlify/pod-dev-foundations/issues/581#issuecomment-1731022753
61- zisi_golang_use_al2 : siteInfo . featureFlags ?. cli_golang_use_al2 ,
63+ zisi_golang_use_al2 : isFeatureFlagEnabled ( ' cli_golang_use_al2' , siteInfo ) ,
6264} )
6365
6466/**
You can’t perform that action at this time.
0 commit comments