Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
312 changes: 184 additions & 128 deletions bun.lock

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions kittynode-docs/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ import starlightLlmsTxt from "starlight-llms-txt";

// https://astro.build/config
export default defineConfig({
redirects: {
"/": "/start-here/getting-started",
},
adapter: cloudflare({
imageService: "compile",
imageService: "passthrough",
prerenderEnvironment: "node",
}),
site: "https://docs.kittynode.com",
Expand Down
8 changes: 4 additions & 4 deletions kittynode-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/cloudflare": "^13.1.8",
"@astrojs/starlight": "^0.38.3",
"@astrojs/cloudflare": "^13.7.0",
"@astrojs/starlight": "^0.38.5",
"@fontsource-variable/literata": "^5.2.8",
"astro": "^6.1.5",
"astro": "~6.3.0",
"sharp": "^0.34.5",
"starlight-image-zoom": "^0.14.1",
"starlight-links-validator": "^0.23.0",
"starlight-llms-txt": "^0.8.0",
"typescript": "^6.0.2",
"vite": "^7.3.2"
"vite": "^7.3.6"
},
"devDependencies": {
"wrangler": "^4.81.1"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 7 additions & 4 deletions kittynode-docs/src/components/overrides/SiteTitle.astro
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
---
import { Image } from "astro:assets";
import appLogo from "../../assets/kittynode-logo-app.png";

const main = "https://kittynode.com/";
const self = "/start-here/getting-started";
---

<span class="site-title sl-flex">
<a class="wordmark" href={main} aria-label="Kittynode">
<Image src={appLogo} alt="" class="app-logo" loading="eager" />
<img
src="/images/kittynode-logo-app.png"
alt=""
class="app-logo"
width="160"
height="160"
/>
<span class="wordmark-text">Kittynode</span>
</a>
<a class="docs-text" href={self} aria-label="Docs">Docs</a>
Expand Down
3 changes: 3 additions & 0 deletions kittynode-docs/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
return Astro.redirect("/start-here/getting-started");
---
Loading