vantage-p2p/index.html
Bhanu Prakash Sai Potteri 447b2ec283 feat: retarget to dev app 519 + krishna-style API layer
APP_ID/ORG_ID -> 519/900000103 (all other uuids already match dev).
Runtime-config BASE_URL (config.js + SAME_ORIGIN, dev fallback), relative
vite base + BASE_HREF placeholder for the frontgen artifact contract.
API updates from krishna_sales: rdbms lookup via workflow_uuid + form_data,
values[] multi-filters, preset_alias, wf-lookup/dataset-options/me endpoints,
numeric org_id on login.
2026-08-19 12:56:46 +05:30

18 lines
672 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="./zino.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<title>P2P</title>
<!--BASE_HREF-->
<script src="./config.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>