Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import type * as Preset from '@docusaurus/preset-classic';

// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)

const TITLE = 'Refrens API';
const REPO_NAME = 'api';
const ORG_NAME = 'refrens-docs';

const config: Config = {
title: 'Refrens Documentation',
title: TITLE,
tagline: 'API References',
favicon: 'img/favicon.ico',

Expand All @@ -21,7 +22,7 @@ const config: Config = {
// If you aren't using GitHub pages, you don't need these.
organizationName: ORG_NAME, // Usually your GitHub org/user name.
projectName: REPO_NAME, // Usually your repo name.
trailingSlash: false,
trailingSlash: true,
onBrokenLinks: 'throw',
deploymentBranch: 'gh-pages',
onBrokenMarkdownLinks: 'warn',
Expand Down Expand Up @@ -55,7 +56,7 @@ const config: Config = {
// Replace with your project's social card
image: 'img/logo.png',
navbar: {
title: 'Refrens Documentation',
title: TITLE,
logo: {
alt: 'Refrens Logo',
src: 'img/logo.png',
Expand Down
Loading