Skip to content

Commit 88ce36c

Browse files
authored
feat: add starlight-fullview-mode plugin (#56)
1 parent 3b9e462 commit 88ce36c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

astro.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineConfig } from "astro/config";
22
import starlight from "@astrojs/starlight";
33
import starlightLinksValidator from "starlight-links-validator";
4+
import starlightFullViewMode from "starlight-fullview-mode";
45

56
// https://astro.build/config
67
export default defineConfig({
@@ -25,7 +26,7 @@ export default defineConfig({
2526
"./node_modules/@interledger/docs-design-system/src/styles/teal-theme.css",
2627
"./node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css",
2728
],
28-
plugins: [starlightLinksValidator()],
29+
plugins: [starlightLinksValidator(), starlightFullViewMode()],
2930
components: {
3031
Header: "./src/components/Header.astro",
3132
PageSidebar: "./src/components/PageSidebar.astro",

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
"astro": "astro"
99
},
1010
"dependencies": {
11-
"@astrojs/starlight": "^0.33.0",
12-
"@interledger/docs-design-system": "^0.6.2",
13-
"astro": "^5.6.1",
11+
"@astrojs/starlight": "^0.34.3",
12+
"@interledger/docs-design-system": "^0.7.1",
13+
"astro": "^5.7.13",
1414
"sharp": "^0.34.1",
15-
"starlight-links-validator": "^0.15.0"
15+
"starlight-fullview-mode": "^0.2.3",
16+
"starlight-links-validator": "^0.16.0"
1617
}
1718
}

0 commit comments

Comments
 (0)