Skip to content

Commit d892ac1

Browse files
committed
fix EDGE_CONFIG_SKIP_PREPARE_SCRIPT
1 parent 0e50100 commit d892ac1

File tree

1 file changed

+1
-1
lines changed
  • packages/edge-config/src

1 file changed

+1
-1
lines changed

packages/edge-config/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ program
129129
.description('Prepare Edge Config stores.json file for build time embedding')
130130
.option('--verbose', 'Enable verbose logging')
131131
.action(async (options: PrepareOptions) => {
132-
if (process.env.EDGE_CONFIG_DISABLE_EMBEDDING === '1') return;
132+
if (process.env.EDGE_CONFIG_SKIP_PREPARE_SCRIPT === '1') return;
133133

134134
const output = join(__dirname, '..', 'dist', 'stores.json');
135135
await prepare(output, options);

0 commit comments

Comments
 (0)