@@ -4,6 +4,7 @@ import starlightLinksValidator from 'starlight-links-validator'
44import starlightFullViewMode from 'starlight-fullview-mode'
55
66import mdx from '@astrojs/mdx'
7+ import { PUBLISHED_RFC_SIDEBAR_ITEMS } from './src/data/rfcs.ts'
78
89// https://astro.build/config
910export default defineConfig ( {
@@ -23,7 +24,10 @@ export default defineConfig({
2324 starlightLinksValidator ( {
2425 exclude : [ '/participation-guidelines' ]
2526 } ) ,
26- starlightFullViewMode ( { leftSidebarEnabled : false } )
27+ starlightFullViewMode ( {
28+ leftSidebarEnabled : true ,
29+ rightSidebarEnabled : true
30+ } )
2731 ] ,
2832 head : [
2933 {
@@ -73,50 +77,7 @@ export default defineConfig({
7377 {
7478 label : 'Specifications' ,
7579 items : [
76- {
77- label : 'Interledger Protocol V4 (ILPv4)' ,
78- link : '/rfcs/interledger-protocol'
79- } ,
80- {
81- label : 'Interledger Architecture' ,
82- link : '/rfcs/interledger-architecture'
83- } ,
84- {
85- label : 'Interledger Addresses' ,
86- link : '/rfcs/ilp-addresses'
87- } ,
88- {
89- label : 'STREAM Protocol' ,
90- link : '/rfcs/stream-protocol'
91- } ,
92- {
93- label : 'Simple Payment Setup Protocol (SPSP)' ,
94- link : '/rfcs/simple-payment-setup-protocol'
95- } ,
96- {
97- label : 'Peering, Clearing and Settling' ,
98- link : '/rfcs/peering-clearing-settling'
99- } ,
100- {
101- label : 'Settlement Engines' ,
102- link : '/rfcs/settlement-engines'
103- } ,
104- {
105- label : 'ILP Over HTTP' ,
106- link : '/rfcs/ilp-over-http'
107- } ,
108- {
109- label : 'Bilateral Transfer Protocol' ,
110- link : '/rfcs/bilateral-transfer-protocol'
111- } ,
112- {
113- label : 'Dynamic Configuration Protocol' ,
114- link : '/rfcs/dynamic-configuration-protocol'
115- } ,
116- {
117- label : 'Hashed-Timelock Agreements' ,
118- link : '/rfcs/hashed-timelock-agreements'
119- } ,
80+ ...PUBLISHED_RFC_SIDEBAR_ITEMS ,
12081 {
12182 label : 'Payment Pointers' ,
12283 link : 'https://paymentpointers.org' ,
0 commit comments