186 lines
4.2 KiB
TypeScript
186 lines
4.2 KiB
TypeScript
import { hopeTheme } from "vuepress-theme-hope";
|
|
|
|
import navbar from "./navbar.js";
|
|
import sidebar from "./sidebar.js";
|
|
|
|
export default hopeTheme({
|
|
hostname: "https://courses.ecnu.vanillaaaa.org",
|
|
|
|
author: {
|
|
name: "BetterECNU",
|
|
url: "https://github.com/BetterECNU",
|
|
},
|
|
|
|
// TODO: logo.svg
|
|
logo: "https://drive.vanillaaaa.org/p/SharedCourses/logo.png?sign=Gt94tCDy5QpjoruGeP58uylLeoDpJtiRT8r5V8nuMZw=:0",
|
|
|
|
repo: "BetterECNU/SharedCourses",
|
|
|
|
docsDir: "docs",
|
|
|
|
// 导航栏
|
|
navbar,
|
|
|
|
// 侧边栏
|
|
sidebar,
|
|
|
|
// 页脚
|
|
footer: "SharedCourses - 华东师范大学课程共享计划",
|
|
displayFooter: true,
|
|
|
|
// 多语言配置
|
|
metaLocales: {
|
|
editLink: "在 GitHub 上编辑此页",
|
|
},
|
|
|
|
// 如果想要实时查看任何改变,启用它。注: 这对更新性能有很大负面影响
|
|
hotReload: true,
|
|
|
|
// 此处开启了很多功能用于演示,你应仅保留用到的功能。
|
|
markdown: {
|
|
align: true,
|
|
attrs: true,
|
|
codeTabs: true,
|
|
component: true,
|
|
demo: true,
|
|
figure: true,
|
|
gfm: true,
|
|
imgLazyload: true,
|
|
imgSize: true,
|
|
include: true,
|
|
mark: true,
|
|
plantuml: true,
|
|
spoiler: true,
|
|
stylize: [
|
|
{
|
|
matcher: "Recommended",
|
|
replacer: ({ tag }) => {
|
|
if (tag === "em")
|
|
return {
|
|
tag: "Badge",
|
|
attrs: { type: "tip" },
|
|
content: "Recommended",
|
|
};
|
|
},
|
|
},
|
|
],
|
|
sub: true,
|
|
sup: true,
|
|
tabs: true,
|
|
tasklist: true,
|
|
vPre: true,
|
|
|
|
// 启用 KaTeX 数学公式支持
|
|
math: {
|
|
// 启用前安装 katex
|
|
type: "katex",
|
|
},
|
|
|
|
// 如果你需要幻灯片,安装 @vuepress/plugin-revealjs 并取消下方注释
|
|
// revealjs: {
|
|
// plugins: ["highlight", "math", "search", "notes", "zoom"],
|
|
// },
|
|
|
|
// 在启用之前安装 chart.js
|
|
// chartjs: true,
|
|
|
|
// insert component easily
|
|
|
|
// 在启用之前安装 echarts
|
|
// echarts: true,
|
|
|
|
// 在启用之前安装 flowchart.ts
|
|
// flowchart: true,
|
|
|
|
// 在启用之前安装 mermaid
|
|
// mermaid: true,
|
|
|
|
// playground: {
|
|
// presets: ["ts", "vue"],
|
|
// },
|
|
|
|
// 在启用之前安装 @vue/repl
|
|
// vuePlayground: true,
|
|
|
|
// 在启用之前安装 sandpack-vue3
|
|
// sandpack: true,
|
|
},
|
|
|
|
// 在这里配置主题提供的插件
|
|
plugins: {
|
|
// 注意: 仅用于测试! 你必须自行生成并在生产环境中使用自己的评论服务
|
|
comment: false,
|
|
|
|
components: {
|
|
components: ["Badge", "VPCard"],
|
|
},
|
|
|
|
icon: {
|
|
prefix: "fa6-solid:",
|
|
},
|
|
|
|
slimsearch: {
|
|
indexContent: true,
|
|
},
|
|
|
|
watermark: true,
|
|
|
|
// 如果你需要 PWA。安装 @vuepress/plugin-pwa 并取消下方注释
|
|
// pwa: {
|
|
// favicon: "/favicon.ico",
|
|
// cacheHTML: true,
|
|
// cacheImage: true,
|
|
// appendBase: true,
|
|
// apple: {
|
|
// icon: "/assets/icon/apple-icon-152.png",
|
|
// statusBarColor: "black",
|
|
// },
|
|
// msTile: {
|
|
// image: "/assets/icon/ms-icon-144.png",
|
|
// color: "#ffffff",
|
|
// },
|
|
// manifest: {
|
|
// icons: [
|
|
// {
|
|
// src: "/assets/icon/chrome-mask-512.png",
|
|
// sizes: "512x512",
|
|
// purpose: "maskable",
|
|
// type: "image/png",
|
|
// },
|
|
// {
|
|
// src: "/assets/icon/chrome-mask-192.png",
|
|
// sizes: "192x192",
|
|
// purpose: "maskable",
|
|
// type: "image/png",
|
|
// },
|
|
// {
|
|
// src: "/assets/icon/chrome-512.png",
|
|
// sizes: "512x512",
|
|
// type: "image/png",
|
|
// },
|
|
// {
|
|
// src: "/assets/icon/chrome-192.png",
|
|
// sizes: "192x192",
|
|
// type: "image/png",
|
|
// },
|
|
// ],
|
|
// shortcuts: [
|
|
// {
|
|
// name: "Demo",
|
|
// short_name: "Demo",
|
|
// url: "/demo/",
|
|
// icons: [
|
|
// {
|
|
// src: "/assets/icon/guide-maskable.png",
|
|
// sizes: "192x192",
|
|
// purpose: "maskable",
|
|
// type: "image/png",
|
|
// },
|
|
// ],
|
|
// },
|
|
// ],
|
|
// },
|
|
// },
|
|
},
|
|
});
|