flecks/packages/dox/src/server/index.js

16 lines
343 B
JavaScript
Raw Normal View History

2022-03-07 00:21:16 -06:00
import commands from './commands';
2023-12-31 16:21:43 -06:00
export {configDefaults} from './docusaurus';
export const hooks = {
'@flecks/core.commands': commands,
'@flecks/core.config': () => ({
/**
* Rewrite the output filenames of source files.
*
* `filename.replace(new RegExp([key]), [value]);`
*/
filenameRewriters: {},
}),
2022-03-07 00:21:16 -06:00
};