From 632006fac37fd7c7635bb1965408032996079467 Mon Sep 17 00:00:00 2001 From: Nathan Houle Date: Tue, 26 Aug 2025 15:00:13 -0700 Subject: [PATCH] fix(dev): add support for `dev-server` context Related issue: https://github.com/netlify/cli/pull/7585 --- packages/dev/src/lib/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dev/src/lib/env.ts b/packages/dev/src/lib/env.ts index 8c25db14..344af494 100644 --- a/packages/dev/src/lib/env.ts +++ b/packages/dev/src/lib/env.ts @@ -8,7 +8,7 @@ export type EnvironmentVariableSource = 'account' | 'addons' | 'configFile' | 'g * These all match possible `context` values returned by the Envelope API. * Note that a user may also specify a branch name with the special `branch:my-branch-name` format. */ -export const SUPPORTED_CONTEXTS = ['all', 'production', 'deploy-preview', 'branch-deploy', 'dev'] as const +export const SUPPORTED_CONTEXTS = ['all', 'production', 'deploy-preview', 'branch-deploy', 'dev', 'dev-server'] as const /** * Additional aliases for the user-provided env `context` option.