19 lines
502 B
HTML
19 lines
502 B
HTML
<!-- index.html (project root) -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0"
|
|
/>
|
|
<base href="./" /> <!-- makes all URLs relative -->
|
|
<title>vatWMS</title>
|
|
<!-- Vite will transform this import into the proper hashed bundle in production -->
|
|
<script type="module" src="/resources/js/app.tsx"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|