-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
2,663 additions
and
14,516 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,44 @@ | ||
module.exports = { | ||
host: process.env.HOST || "localhost", | ||
port: process.env.PORT || 8080, | ||
title: "Badrap docs", | ||
locales: { | ||
"/": { | ||
lang: "en-US", | ||
description: "Badrap documentation site", | ||
}, | ||
"/fi/": { | ||
lang: "fi", | ||
description: "Badrapin dokumentaatiosivusto", | ||
}, | ||
}, | ||
themeConfig: { | ||
import { viteBundler } from '@vuepress/bundler-vite' | ||
import { defaultTheme } from '@vuepress/theme-default' | ||
import { defineUserConfig } from 'vuepress' | ||
|
||
module.exports = defineUserConfig({ | ||
bundler: viteBundler(), | ||
theme: defaultTheme({ | ||
logo: "/badrap-logo.png", | ||
sidebar: "auto", | ||
docsRepo: "badrap/docs.badrap.io", | ||
docsDir: "docs", | ||
docsBranch: "main", | ||
editLinks: true, | ||
nav: [ | ||
contributors: false, | ||
editLink: true, | ||
navbar: [ | ||
{ | ||
text: "badrap.io", | ||
link: "https://badrap.io", | ||
}, | ||
], | ||
locales: { | ||
"/": { | ||
selectText: "Languages", | ||
label: "English", | ||
selectLanguageName: "English", | ||
selectLanguageText: "Languages", | ||
editLinkText: "Edit this page on GitHub", | ||
}, | ||
"/fi/": { | ||
selectText: "Kielet", | ||
label: "Suomi", | ||
selectLanguageName: "Suomi", | ||
selectLanguageText: "Kielet", | ||
editLinkText: "Muokkaa tätä sivua GitHubissa", | ||
}, | ||
} | ||
}), | ||
title: "Badrap docs", | ||
locales: { | ||
"/": { | ||
lang: "en-US", | ||
description: "Badrap documentation site", | ||
}, | ||
"/fi/": { | ||
lang: "fi", | ||
description: "Badrapin dokumentaatiosivusto", | ||
}, | ||
}, | ||
}; | ||
}); |
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.