Skip to content

Commit 78c0c93

Browse files
authored
Fix broken links, add build check to CI (#8)
1 parent 7217808 commit 78c0c93

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/static_check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ jobs:
1313
run: yarn format:check
1414
- name: Check types
1515
run: yarn typecheck
16+
- name: Check build
17+
run: yarn build

docusaurus.config.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const config: Config = {
66
title: "Fishjam Cloud Docs",
77
tagline: "Easiest way to add video streaming to your React Native app",
88
favicon: "img/favicon.svg",
9-
109
// Set the production url of your site here
1110
url: "https://fishjam-cloud.github.io/",
1211
// Set the /<baseUrl>/ pathname under which your site is served
@@ -124,11 +123,15 @@ const config: Config = {
124123
footer: {
125124
links: [
126125
{
127-
title: "Docs",
126+
title: "Quick Setup",
128127
items: [
129128
{
130-
label: "Tutorial",
131-
to: "/docs/intro",
129+
label: "React Native",
130+
to: "/guide/category/quick-setup---react-native",
131+
},
132+
{
133+
label: "React",
134+
to: "/guide/category/quick-setup---react",
132135
},
133136
],
134137
},

0 commit comments

Comments
 (0)