mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
code - enable vscode-file protocol and bypassHeatCheck
caching (#98682)
This commit is contained in:
parent
745e354d64
commit
9636518bbf
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ function configureCommandlineSwitchesSync(cliArgs) {
|
|||
// Read argv config
|
||||
const argvConfig = readArgvConfigSync();
|
||||
|
||||
let browserCodeLoadingStrategy = undefined;
|
||||
let browserCodeLoadingStrategy = typeof codeCachePath === 'string' ? 'bypassHeatCheck' : 'none';
|
||||
|
||||
Object.keys(argvConfig).forEach(argvKey => {
|
||||
const argvValue = argvConfig[argvKey];
|
||||
|
|
Loading…
Reference in a new issue