Files
dv3d/dicom-viewer/public/non-dicom-test.html
T
2025-12-15 11:39:44 +00:00

26 lines
1.0 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DV3D — Non-DICOM Test</title>
<style>
html,body { height:100%; margin:0; background:#111 }
#non-dicom-root { width: 100vw; height: 100vh; }
</style>
</head>
<body>
<div id="non-dicom-root" class="dicom-viewer-root"></div>
<!-- Provide a small noop React Refresh preamble to avoid plugin-react preamble errors -->
<script>
// If plugin-react's preamble wasn't injected for some reason, provide no-op
// implementations so the runtime does not throw. This disables fast-refresh
// semantics for this page but keeps HMR from crashing.
window.$RefreshReg$ = window.$RefreshReg$ || function() {};
window.$RefreshSig$ = window.$RefreshSig$ || function() { return function(type) { return type; }; };
</script>
<!-- Vite can load TSX modules directly in dev mode -->
<script type="module" src="/src/nonDicomTest.tsx"></script>
</body>
</html>