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 b5a30fb commit 69ec710Copy full SHA for 69ec710
packages/runtime/src/webcontainer/terminal-config.ts
@@ -273,7 +273,7 @@ function normalizeTerminalConfig(config?: TerminalSchema): NormalizedTerminalCon
273
id: panel.id,
274
title: panel.title,
275
allowRedirects: panel.allowRedirects ?? config.allowRedirects,
276
- allowCommands: panel.allowCommands ?? DEFAULT_COMMANDS,
+ allowCommands: panel.allowCommands ? resolveAllowCommands(panel.allowCommands) : options.allowCommands,
277
});
278
}
279
0 commit comments