acrn-hypervisor/misc/config_tools/configurator/index.html
Weiyi Feng f9cb5edc7e config_tools: update configurator document and build script
1. update configurator document.
2. fix build script doesn't generate allchecks.xsd issue.
3. add open_devtools command, now we can get detail debug info in prod.
4. remove vconsole component, which will cause some strange js runtime issue in Linux.

Tracked-On: #6691
Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
2022-04-27 12:54:47 +08:00

28 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>ACRN Configurator</title>
</head>
<!-- must using style, otherwise style will lost -->
<body style="margin: 0;padding: 0;height: calc(100vh - 1px);width: calc(100vw - 1px);border: 1px #787878 solid;">
<div id="app">
<div data-tauri-drag-region="true"
style="width: 100%;height: 100%;position:fixed;overflow:hidden;display: flex;justify-content: center;align-items: center;background: #007B81">
<div style="display: block;color: white;text-align: center;user-select: none">
<text style="font-size:36px;display: flex;padding: 16px">
<img src="/src/assets/images/ACRN_Logo.svg"
alt="logo" onClick="openDevTools()"
style="height: 49px;padding-right: 1.5rem;cursor: pointer"/>
Loading...
</text>
<text style="font-size:24px;display: block">Please wait for 5 seconds~</text>
</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>