23 lines
583 B
HTML
23 lines
583 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite + Vue + TS</title>
|
|
<script>
|
|
var Module = {
|
|
onRuntimeInitialized: function () {
|
|
console.log('runtime initalized');
|
|
}
|
|
};
|
|
</script>
|
|
<script src="/js/btclock_datahandler.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="dev-root"></div>
|
|
<script type="module" src="/src/dev.ts"></script>
|
|
|
|
</body>
|
|
</html>
|