mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
17 lines
444 B
JavaScript
17 lines
444 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
async function RefineTemplates() {
|
|
return {
|
|
name: "docusaurus-plugin-refine-templates",
|
|
contentLoaded: async (args) => {
|
|
const { content, actions } = args;
|
|
const { addRoute, createData } = actions;
|
|
},
|
|
loadContent: async () => {
|
|
return [];
|
|
},
|
|
};
|
|
}
|
|
exports.default = RefineTemplates;
|