Alexandru Dima преди 3 години
родител
ревизия
8c6103a3b4
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      monaco-editor-webpack-plugin/test/index.js

+ 2 - 2
monaco-editor-webpack-plugin/test/index.js

@@ -1,6 +1,6 @@
 import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
 
 monaco.editor.create(document.getElementById('container'), {
-	value: '',
-	language: 'html'
+	value: 'console.log("Hello, world")',
+	language: 'javascript'
 });