Merge branch 'main' into main

This commit is contained in:
Thomas Silkjær
2026-01-08 10:42:23 +01:00
committed by GitHub
3 changed files with 1035 additions and 619 deletions

View File

@@ -5,6 +5,7 @@ import react from '@astrojs/react'
import starlight from '@astrojs/starlight'
import tailwindcss from '@tailwindcss/vite'
import { defineConfig } from 'astro/config'
import starlightLlmsTxt from 'starlight-llms-txt'
import starlightOpenAPI, { openAPISidebarGroups } from 'starlight-openapi'
import { remarkGlobalReferences } from './src/plugins/remarkGlobalReferences'
@@ -40,6 +41,30 @@ export default defineConfig({
},
},
]),
starlightLlmsTxt({
customSets: [
{
label: 'Hook Concepts',
description: 'Xahau Hook Concepts',
paths: ['docs/hooks/**'],
},
{
label: 'Hook API',
description: 'Documentation for the Hook API',
paths: ['docs/hooks/functions/**'],
},
{
label: 'Transactions',
description: 'Documentation for Xahau Transactions',
paths: ['docs/protocol-reference/transactions/**'],
},
{
label: 'Ledger Entries',
description: 'Documentation for Xahau Ledger Entries',
paths: ['docs/protocol-reference/ledger-data/**'],
},
],
}),
],
sidebar: [
{

1628
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -23,6 +23,7 @@
"react": "^19.1.0",
"react-dom": "^19.1.0",
"remark-reference-links": "^7.0.0",
"starlight-llms-txt": "^0.7.0",
"starlight-openapi": "^0.19.1",
"tailwindcss": "^4.1.11",
"vanilla-cookieconsent": "^3.1.0"