vue-monaco-cdn
vue-monaco-cdn copied to clipboard
add locale support
https://github.com/microsoft/monaco-editor/blob/main/samples/browser-amd-localized/index.html
add a line after https://github.com/leo-buneev/vue-monaco-cdn/blob/master/src/services/monaco-loader.js#L49
window.require.config({ 'vs/nls': { availableLanguages: { '*': 'de' } } })
if (loaderPending) {
window.require.config(config)
window.require.config({ 'vs/nls': { availableLanguages: { '*': 'de' } } })
loaderPending = false
}
will set the nls locale.