Skip to content

Commit 5ac456b

Browse files
committed
1 parent 57fb79e commit 5ac456b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build website
3636
run: npm run build
3737
env:
38-
BASE_URL: '/docs/'
38+
# BASE_URL: '/docs/'
3939
INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
4040
INKEEP_INTEGRATION_ID: ${{ secrets.INKEEP_INTEGRATION_ID }}
4141
INKEEP_ORGANIZATION_ID: ${{ secrets.INKEEP_ORGANIZATION_ID }}
@@ -48,7 +48,7 @@ jobs:
4848
github_token: ${{ secrets.GITHUB_TOKEN }}
4949
# Build output to publish to the `gh-pages` branch:
5050
publish_dir: ./build
51-
# cname: docs.gofiber.io
51+
cname: docs.gofiber.io
5252
- uses: sarisia/actions-status-discord@v1
5353
if: ${{ failure() || (success() && steps.last_status.outputs.last_status == 'failure') }}
5454
with:

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const darkCodeTheme = require('prism-react-renderer').themes.dracula;
88
const config = {
99
title: 'Fiber',
1010
tagline: 'An online API documentation with examples so you can start building web apps with Fiber right away!',
11-
// url: 'https://docs.gofiber.io',
12-
url: 'https://gofiber.github.io',
11+
url: 'https://docs.gofiber.io',
12+
// url: 'https://gofiber.github.io',
1313
baseUrl: process.env.BASE_URL || '/',
1414
onBrokenLinks: 'throw',
1515
onBrokenMarkdownLinks: 'warn',

0 commit comments

Comments
 (0)