Files
react-template/index.html
T
zihluwang 0ba8da3420 feat(router): add basename configuration for production env
Update router configuration to use '/react-template' as basename in production and '/' in development. Also update index.html title to reflect project name.
2025-09-15 20:33:51 +08:00

14 lines
372 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>OnixByte React Template</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>