Commit f799f76
feat: migrate to SvelteKit + adapter-static (real URL routing, SSG)
Replace Vite+Svelte SPA (hash routing) with SvelteKit + @sveltejs/adapter-static:
- Each product page now prerendered as a standalone HTML file at build time:
/ → index.html
/augmentum → augmentum.html
/visage → visage.html
/mrhaven → mrhaven.html
/ecosystem → ecosystem.html
404 → 404.html
- Real URL routing: Google, Perplexity, ChatGPT Browse can now index each
product page independently as a unique URL
- All page content visible in HTML source — no JS required for crawlers
- Per-page <title> and OG tags prerendered into each HTML file
- $page.url.pathname replaces svelte-spa-router $location for active nav
- Sitemap and llms.txt updated from hash (#/visage) to clean (/visage) URLs
- Static assets (fonts, robots.txt, sitemap.xml, llms.txt, CNAME) unchanged
- Output directory remains dist/ — GitHub Actions workflow unchanged
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent 1485612 commit f799f76
File tree
18 files changed
+2291
-73
lines changed- public
- src
- lib
- routes
- augmentum
- ecosystem
- mrhaven
- visage
18 files changed
+2291
-73
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | | - | |
4 | | - | |
5 | | - | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
| 4 | + | |
| 5 | + | |
19 | 6 | | |
20 | | - | |
| 7 | + | |
| 8 | + | |
21 | 9 | | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
33 | 13 | | |
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
| 13 | + | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
17 | | - | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | | - | |
| 39 | + | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
0 commit comments