- vite base './' (relative asset refs) so one build serves any mount path - index.html carries <!--BASE_HREF--> placeholder + ./config.js ref - BASE_URL reads window.__RUNTIME_CONFIG__.VITE_ZINO_API_URL (placement- written) with a dev fallback Required by frontgen 1600 assertBuildOutput + the dev->qa frontend release model (target writes config.js from its own ZINO_API_URL).
16 lines
430 B
HTML
16 lines
430 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/src/assets/logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Krishna Sales</title>
|
|
<!--BASE_HREF-->
|
|
<script src="./config.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|