tangled
alpha
login
or
join now
stream.place
/
streamplace
74
fork
atom
Live video on the AT Protocol
74
fork
atom
overview
issues
1
pulls
pipelines
we can try this?
Natalie B.
2 months ago
ebe5c032
910f4e01
+18
-1
2 changed files
expand all
collapse all
unified
split
js
docs
astro.config.mjs
wrangler.toml
+4
-1
js/docs/astro.config.mjs
···
1
1
// @ts-check
2
2
import starlight from "@astrojs/starlight";
3
3
-
import { defineConfig } from "astro/config";
3
3
+
import { defineConfig, passthroughImageService } from "astro/config";
4
4
import starlightOpenAPI, { openAPISidebarGroups } from "starlight-openapi";
5
5
6
6
// https://astro.build/config
7
7
export default defineConfig({
8
8
base: "/docs",
9
9
+
image: {
10
10
+
service: passthroughImageService(),
11
11
+
},
9
12
integrations: [
10
13
starlight({
11
14
title: "Streamplace Docs",
+14
wrangler.toml
···
1
1
+
name = "streamplace-docs"
2
2
+
compatibility_date = "2025-04-01"
3
3
+
4
4
+
[assets]
5
5
+
directory = "./js/docs/dist/"
6
6
+
not_found_handling = "404-page"
7
7
+
8
8
+
[[redirects]]
9
9
+
from = "/"
10
10
+
to = "/docs"
11
11
+
status = 301
12
12
+
13
13
+
[build]
14
14
+
command = "pnpm install --filter=streamplace-docs... && cd js/docs && astro build --outDir ./dist/docs"