Skip to content

Commit e1dd699

Browse files
committed
Fix Vue loading
1 parent 7a53b85 commit e1dd699

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/components/CodeEditor/Monaco

1 file changed

+1
-1
lines changed

packages/app/src/app/components/CodeEditor/Monaco/mode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default async (title: string, monaco) => {
1313
if (kind[1] === 'html') return 'html';
1414
if (kind[1] === 'vue') {
1515
if (!monaco.languages.getLanguages().find(l => l.id === 'vue')) {
16-
await requireAMDModule(['13/vs/language/vue/monaco.contribution']);
16+
await requireAMDModule(['vs/language/vue/monaco.contribution']);
1717
}
1818
return 'vue';
1919
}

0 commit comments

Comments
 (0)