mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
code cache - do not configure our loader when using vscode-file
protocol
This commit is contained in:
parent
9636518bbf
commit
72fb784f97
1 changed files with 2 additions and 2 deletions
4
src/bootstrap-window.js
vendored
4
src/bootstrap-window.js
vendored
|
@ -147,8 +147,8 @@
|
|||
loaderConfig.amdModulesPattern = /^vs\//;
|
||||
}
|
||||
|
||||
// Cached data config
|
||||
if (configuration.codeCachePath) {
|
||||
// Cached data config (node.js loading only)
|
||||
if (!useCustomProtocol && configuration.codeCachePath) {
|
||||
loaderConfig.nodeCachedData = {
|
||||
path: configuration.codeCachePath,
|
||||
seed: modulePaths.join('')
|
||||
|
|
Loading…
Reference in a new issue