index.html 496 B

1234567891011121314151617181920
  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. paths: {
  12. vs: '../../../out/monaco-editor/dev/vs'
  13. }
  14. });
  15. require(['vs/editor/editor.main'], () => {
  16. window.monacoAPI = monaco;
  17. });
  18. </script>
  19. </body>
  20. </html>