Skip to content

Commit faca7f4

Browse files
authored
Merge pull request #1687 from LykosAI/docs-root-index
docs: add root index.html fallback so SWA deploy validation passes
2 parents 1150f87 + aae2c67 commit faca7f4

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

docs/public/index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<!--
6+
Root landing fallback. On Azure SWA the "/" route in staticwebapp.config.json
7+
302s to /stability-matrix/ before this file is ever served; this page exists
8+
because the SWA deploy action requires an index.html at the app root, and it
9+
doubles as the redirect for local preview (which has no SWA routing). Replaced
10+
by a real product landing page when the site goes multi-product.
11+
-->
12+
<meta http-equiv="refresh" content="0; url=/stability-matrix/" />
13+
<link rel="canonical" href="https://docs.lykos.ai/stability-matrix/" />
14+
<title>Lykos Docs</title>
15+
</head>
16+
<body>
17+
<p>Redirecting to the <a href="/stability-matrix/">Stability Matrix documentation</a>&hellip;</p>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)