Skip to content

Commit

Permalink
refactor(docs): Removed trailing slashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyost committed Nov 24, 2023
1 parent 8fb0e7b commit 34c349b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/components/Page/PageNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const theme = useTheme()
<ski-navbar-item to="/" :active="$route.path === '/'">
<ski-icon icon="house-door-fill" /> Home
</ski-navbar-item>
<ski-navbar-item to="/docs/" :active="$route.path.startsWith('/docs/')">
<ski-navbar-item to="/docs" :active="$route.path.startsWith('/docs')">
<ski-icon icon="file-text-fill" /> Docs
</ski-navbar-item>
</ski-navbar-items>
Expand Down
2 changes: 1 addition & 1 deletion docs/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default defineNuxtConfig({
site: {
url: siteMeta.url,
name: siteMeta.title,
trailingSlash: true
trailingSlash: false
},

linkChecker: {
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ await broadcast.start();
</ski-column>
</ski-columns>
<div class="text-center pt-5 pb-5">
<ski-button to="/docs/" class="btn-lg ps-5 pe-5" :variant="button">
<ski-button to="/docs" class="btn-lg ps-5 pe-5" :variant="button">
<ski-icon icon="code-slash" /> Get started
</ski-button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/bonsoir/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ or <q>Good afternoon</q> depending on the current moment of the day).

## Installation

See [how to install](https://bonsoir.skyost.eu/docs/#installation) on the Bonsoir website.
See [how to install](https://bonsoir.skyost.eu/docs#installation) on the Bonsoir website.

## Code snippet

Expand Down

0 comments on commit 34c349b

Please sign in to comment.