Skip to content

Commit

Permalink
fix broken links, add build check to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
czerwiukk committed Sep 17, 2024
1 parent 7217808 commit 009bb8d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/static_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ jobs:
run: yarn format:check
- name: Check types
run: yarn typecheck
- name: Check build
run: yarn build
11 changes: 7 additions & 4 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const config: Config = {
title: "Fishjam Cloud Docs",
tagline: "Easiest way to add video streaming to your React Native app",
favicon: "img/favicon.svg",

// Set the production url of your site here
url: "https://fishjam-cloud.github.io/",
// Set the /<baseUrl>/ pathname under which your site is served
Expand Down Expand Up @@ -124,11 +123,15 @@ const config: Config = {
footer: {
links: [
{
title: "Docs",
title: "Quick Setup",
items: [
{
label: "Tutorial",
to: "/docs/intro",
label: "React Native",
to: "/guide/category/quick-setup---react-native",
},
{
label: "React",
to: "/guide/category/quick-setup---react",
},
],
},
Expand Down

0 comments on commit 009bb8d

Please sign in to comment.