We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 947d17c commit a87b556Copy full SHA for a87b556
apps/web/src/composables/useDebug.ts
@@ -51,8 +51,10 @@ export function useDebug() {
51
}
52
53
const monacoOptions = computed<Monaco.editor.IStandaloneEditorConstructionOptions>(() => {
54
+ const existingMonacoEnvironment = (window as any).MonacoEnvironment ?? {}
55
;(window as any).MonacoEnvironment = {
- locale: 'fr'
56
+ ...existingMonacoEnvironment,
57
+ locale: 'fr',
58
59
60
return {
0 commit comments