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 0e50100 commit d892ac1Copy full SHA for d892ac1
packages/edge-config/src/cli.ts
@@ -129,7 +129,7 @@ program
129
.description('Prepare Edge Config stores.json file for build time embedding')
130
.option('--verbose', 'Enable verbose logging')
131
.action(async (options: PrepareOptions) => {
132
- if (process.env.EDGE_CONFIG_DISABLE_EMBEDDING === '1') return;
+ if (process.env.EDGE_CONFIG_SKIP_PREPARE_SCRIPT === '1') return;
133
134
const output = join(__dirname, '..', 'dist', 'stores.json');
135
await prepare(output, options);
0 commit comments