diff --git a/build/gulpfile.editor.js b/build/gulpfile.editor.js index 7db3921bb5c..698941ad456 100644 --- a/build/gulpfile.editor.js +++ b/build/gulpfile.editor.js @@ -63,7 +63,10 @@ function editorLoaderConfig() { result.paths['vs/base/browser/ui/octiconLabel/octiconLabel'] = 'out-build/vs/base/browser/ui/octiconLabel/octiconLabel.mock'; // force css inlining to use base64 -- see https://github.com/Microsoft/monaco-editor/issues/148 - result['vs/css'] = { inlineResources: 'base64' }; + result['vs/css'] = { + inlineResources: 'base64', + inlineResourcesLimit: 3000 // see https://github.com/Microsoft/monaco-editor/issues/336 + }; return result; }