Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 5498894

Browse files
committed
Update editor config
1 parent a6c1867 commit 5498894

File tree

1 file changed

+1
-3
lines changed
  • examples/feature-apps/monaco-editor/lib

1 file changed

+1
-3
lines changed

examples/feature-apps/monaco-editor/lib/editor.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function createModel(name: string, source: string) {
2222
return null;
2323
}
2424

25-
const uri = Uri.parse(`file:///playground/${name}`);
25+
const uri = Uri.parse(`file:///src/${name}`);
2626
const model = editor.createModel(source, lang, uri);
2727
return model;
2828
}
@@ -32,8 +32,6 @@ export function createEditor(container: HTMLElement, readOnly?: boolean) {
3232
readOnly,
3333
automaticLayout: true,
3434
contextmenu: true,
35-
fontFamily: '"Dank Mono", "Source Code Pro", monospace',
36-
fontLigatures: true,
3735
fontSize: 14,
3836
lineHeight: 18,
3937
minimap: { enabled: false },

0 commit comments

Comments
 (0)