- Update the monaco editor to the latest available version (0.52.2) - Disable formatting for webgpu since it's already formatted
29 lines
977 B
HTML
29 lines
977 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Filament Debugger</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
|
|
<link href="https://google.github.io/filament/favicon.png" rel="icon" type="image/x-icon" />
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
font-family: "Open Sans";
|
|
}
|
|
|
|
@font-face {
|
|
font-family: codicon;
|
|
src: url(https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.52.2/min/vs/base/browser/ui/codicons/codicon/codicon.ttf);
|
|
}
|
|
</style>
|
|
<script src="api.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.52.2/min/vs/loader.js"></script>
|
|
</head>
|
|
<body>
|
|
<script src="app.js" type="module"></script>
|
|
<matdbg-viewer></matdbg-viewer>
|
|
</body>
|
|
</html>
|