hmol233 dcbd1d3e51
Upgrade vuepress to beta.15
- use official dark theme
- fix: Fix Tabs
2021-05-28 22:11:48 +08:00

13 lines
325 B
TypeScript

import { path } from "@vuepress/utils";
import { Theme } from "@vuepress/core";
export const docsPlugin: Theme = (options, app) => {
return {
name: "xray-docs-theme",
extends: "@vuepress/theme-default",
clientAppEnhanceFiles: path.resolve(__dirname, "clientAppEnhance.ts"),
};
};
export default docsPlugin;