mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-02 00:56:10 +08:00
62 lines
1.3 KiB
JavaScript
62 lines
1.3 KiB
JavaScript
export const themeData = {
|
|
"navbar": [
|
|
{
|
|
"text": "主页",
|
|
"link": "/"
|
|
},
|
|
{
|
|
"text": "部署与使用",
|
|
"link": "/usage/"
|
|
},
|
|
{
|
|
"text": "开发",
|
|
"link": "/dev/"
|
|
},
|
|
{
|
|
"text": "Github",
|
|
"link": "https://github.com/felinae98/nonebot-bison"
|
|
}
|
|
],
|
|
"locales": {
|
|
"/": {
|
|
"selectLanguageName": "English"
|
|
}
|
|
},
|
|
"logo": null,
|
|
"darkMode": true,
|
|
"repo": null,
|
|
"selectLanguageText": "Languages",
|
|
"selectLanguageAriaLabel": "Select language",
|
|
"sidebar": "auto",
|
|
"sidebarDepth": 2,
|
|
"editLink": true,
|
|
"editLinkText": "Edit this page",
|
|
"lastUpdated": true,
|
|
"lastUpdatedText": "Last Updated",
|
|
"contributors": true,
|
|
"contributorsText": "Contributors",
|
|
"notFound": [
|
|
"There's nothing here.",
|
|
"How did we get here?",
|
|
"That's a Four-Oh-Four.",
|
|
"Looks like we've got some broken links."
|
|
],
|
|
"backToHome": "Take me home",
|
|
"openInNewWindow": "open in new window",
|
|
"toggleDarkMode": "toggle dark mode",
|
|
"toggleSidebar": "toggle sidebar"
|
|
}
|
|
|
|
if (import.meta.webpackHot) {
|
|
import.meta.webpackHot.accept()
|
|
if (__VUE_HMR_RUNTIME__.updateThemeData) {
|
|
__VUE_HMR_RUNTIME__.updateThemeData(themeData)
|
|
}
|
|
}
|
|
|
|
if (import.meta.hot) {
|
|
import.meta.hot.accept(({ themeData }) => {
|
|
__VUE_HMR_RUNTIME__.updateThemeData(themeData)
|
|
})
|
|
}
|