mirror of
https://github.com/XTLS/Xray-docs-next.git
synced 2025-01-19 17:21:41 +03:00
dcbd1d3e51
- use official dark theme - fix: Fix Tabs
13 lines
325 B
TypeScript
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;
|