Closed charlespwd closed 1 week ago
We probably don't want to preload all the files just yet.
We can now start the CodeMirrorLanguageClient with the following to disable full theme preload on theme file open.
CodeMirrorLanguageClient
const client = new CodeMirrorLanguageClient(worker, { initializationOptions: { 'themeCheck.preloadOnBoot': false, } });
changeset
What are you adding in this PR?
We probably don't want to preload all the files just yet.
We can now start the
CodeMirrorLanguageClient
with the following to disable full theme preload on theme file open.Before you deploy
changeset