index.html 553 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  5. </head>
  6. <body>
  7. <div id="editor-container" style="position: absolute; width: 500px; height: 400px"></div>
  8. <script src="../../../out/monaco-editor/dev/vs/loader.js"></script>
  9. <script>
  10. require.config({
  11. baseUrl: new URL('..', document.baseURI).toString(),
  12. paths: {
  13. vs: '../../../out/monaco-editor/dev/vs'
  14. }
  15. });
  16. require(['vs/editor/editor.main'], () => {
  17. window.monacoAPI = monaco;
  18. });
  19. </script>
  20. </body>
  21. </html>