12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
import { getDirname, path } from "vuepress/utils";
|
|
|
|
//#region src/node/plugin.ts
|
|
function fontsPlugin() {
|
|
return {
|
|
name: "@vuepress-plume/plugin-fonts",
|
|
clientConfigFile: path.resolve(getDirname(import.meta.url), "../client/config.js")
|
|
};
|
|
}
|
|
|
|
//#endregion
|
|
export { fontsPlugin }; |