linux-tutorial/docs/.vuepress/config.js

46 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-02-10 23:11:22 +08:00
/**
* @see https://vuepress.vuejs.org/zh/
*/
module.exports = {
port: "4000",
dest: "dist",
base: "/linux-tutorial/",
title: "LINUX-TUTORIAL",
description: "数据库教程",
head: [["link", {rel: "icon", href: `/favicon.ico`}]],
markdown: {
externalLinks: {
target: "_blank", rel: "noopener noreferrer"
}
},
themeConfig: {
logo: "images/dunwu-logo-100.png",
repo: "dunwu/linux-tutorial",
repoLabel: "Github",
editLinks: true,
smoothScroll: true,
locales: {
"/": {
label: "简体中文", selectText: "Languages", editLinkText: "帮助我们改善此页面!", lastUpdated: "上次更新", nav: [{
text: "Linux 命令", link: "/linux/cli/",
}, {
text: "Linux 运维", link: "/linux/ops/",
}, {
text: "Linux 软件运维", link: "/linux/soft/",
}, {
text: "Docker 教程", link: "/docker/",
}, {
2020-03-10 22:54:15 +08:00
text: "🎯 博客", link: "https://github.com/dunwu/blog", target: "_blank", rel: ""
2020-02-10 23:11:22 +08:00
}], sidebar: "auto", sidebarDepth: 2
}
}
},
plugins: [["@vuepress/back-to-top", true], ["@vuepress/pwa", {
serviceWorker: true, updatePopup: true
}], ["@vuepress/medium-zoom", true], ["container", {
type: "vue", before: '<pre class="vue-container"><code>', after: "</code></pre>"
}], ["container", {
type: "upgrade", before: info => `<UpgradePath title="${info}">`, after: "</UpgradePath>"
}], ["flowchart"]]
};