mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
26 lines
856 B
HTML
26 lines
856 B
HTML
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<link
|
|
rel="stylesheet"
|
|
data-name="vs/editor/editor.main"
|
|
href="../../node_modules/monaco-editor/min/vs/editor/editor.main.css"
|
|
/>
|
|
<script src="../owl.js"></script>
|
|
<script type="module" src="app.js"></script>
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
|
</head>
|
|
<body class="h-screen bg-gray-200">
|
|
|
|
<script>
|
|
var require = { paths: { vs: '../../node_modules/monaco-editor/min/vs' } };
|
|
</script>
|
|
<script src="../../node_modules/monaco-editor/min/vs/loader.js"></script>
|
|
<script src="../../node_modules/monaco-editor/min/vs/editor/editor.main.nls.js"></script>
|
|
<script src="../../node_modules/monaco-editor/min/vs/editor/editor.main.js"></script>
|
|
|
|
</body>
|
|
</html> |