There was an error while loading. Please reload this page.
1 parent 51d3e5f commit b5eebfeCopy full SHA for b5eebfe
1 file changed
index.js
@@ -1825,7 +1825,9 @@ export default {
1825
// ─── darren.acreetionos.org — proxy from GitHub raw ─────
1826
if (url.hostname === 'darren.acreetionos.org') {
1827
const RAW_BASE = 'https://raw.githubusercontent.com/spivanatalie64/darren/gh-pages';
1828
- let rawPath = url.pathname === '/' ? '/index.html' : url.pathname;
+ // Root serves /darren/index.html (the hand-crafted full page),
1829
+ // not the empty Vite SPA at /index.html
1830
+ let rawPath = url.pathname === '/' ? '/darren/index.html' : url.pathname;
1831
const rawUrl = RAW_BASE + rawPath;
1832
const rawRes = await fetch(rawUrl, {
1833
headers: { 'User-Agent': CHROME_UA }
0 commit comments