mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 12:19:02 +00:00
20 lines
509 B
HTML
20 lines
509 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Monaco Editor Webpack Plugin Example</title>
|
|
<style>
|
|
.editor {
|
|
width: 800px;
|
|
height: 600px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="editor"></div>
|
|
<script src="index.js" type="module"></script>
|
|
</body>
|
|
</html>
|