From 31dc1094ff2e359bd84216a133e0c7fcb3509970 Mon Sep 17 00:00:00 2001 From: hmol233 <82594500+hmol233@users.noreply.github.com> Date: Thu, 29 Apr 2021 23:38:46 +0800 Subject: [PATCH] Chore: upgrade to vuepress@next-beta.11 --- docs/.vuepress/config.ts | 21 +- docs/.vuepress/theme/components/Tab.vue | 2 +- docs/.vuepress/theme/components/Tabs.vue | 2 +- .../theme/styles/default/_variables.scss | 7 +- .../.vuepress/theme/styles/default/index.scss | 21 + package.json | 9 +- yarn.lock | 3068 +++++++++++++++-- 7 files changed, 2912 insertions(+), 218 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 6b7b2fd..f3b6cff 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -3,9 +3,27 @@ import * as sidebar from "./config/sidebar"; import * as navbar from "./config/navbar"; import * as path from "path"; +const isProduction = process.env.NODE_ENV === "production"; + export default defineUserConfig({ theme: path.join(__dirname, "./theme"), - plugins: ["@vuepress/back-to-top", "vuepress-plugin-mermaidjs"], + plugins: [ + ["@vuepress/back-to-top"], + ["vuepress-plugin-mermaidjs"], + [ + "@vuepress/plugin-search", + { + locales: { + "/": { + placeholder: "Search", + }, + "/zh/": { + placeholder: "搜索", + }, + }, + }, + ], + ], base: "/Xray-docs-next/", locales: { "/": { @@ -71,6 +89,7 @@ export default defineUserConfig({ extendsMarkdown: (md) => { md.use(require("markdown-it-footnote")); }, + //bundler: isProduction ? "@vuepress/webpack" : "@vuepress/vite", bundlerConfig: { chainWebpack: (config) => { config.module diff --git a/docs/.vuepress/theme/components/Tab.vue b/docs/.vuepress/theme/components/Tab.vue index 4a737fd..14755da 100644 --- a/docs/.vuepress/theme/components/Tab.vue +++ b/docs/.vuepress/theme/components/Tab.vue @@ -37,5 +37,5 @@ export default defineComponent({ diff --git a/docs/.vuepress/theme/components/Tabs.vue b/docs/.vuepress/theme/components/Tabs.vue index 4dec442..3d71ad3 100644 --- a/docs/.vuepress/theme/components/Tabs.vue +++ b/docs/.vuepress/theme/components/Tabs.vue @@ -59,7 +59,7 @@ export default defineComponent({