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 03103fc commit 96ab785Copy full SHA for 96ab785
src/commands/dev/dev.ts
@@ -137,7 +137,7 @@ export const dev = async (options: OptionValues, command: BaseCommand) => {
137
138
env[BLOBS_CONTEXT_VARIABLE] = { sources: ['internal'], value: encodeBlobsContext(blobsContext) }
139
140
- if (!options.offline && !options.offlineEnv) {
+ if (!(options.offline || options.offlineEnv)) {
141
env = await getEnvelopeEnv({ api, context: options.context, env, siteInfo })
142
log(`${NETLIFYDEVLOG} Injecting environment variable values for ${chalk.yellow('all scopes')}`)
143
}
0 commit comments