mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-03 16:59:06 +02:00
fix(content-blog): generate feed by reading build output (#6454)
This commit is contained in:
parent
ebd5340205
commit
76a8d5f38a
28 changed files with 364 additions and 249 deletions
2
packages/docusaurus-types/src/index.d.ts
vendored
2
packages/docusaurus-types/src/index.d.ts
vendored
|
@ -258,7 +258,7 @@ export interface Plugin<Content = unknown> {
|
|||
actions: PluginContentLoadedActions;
|
||||
}) => Promise<void>;
|
||||
routesLoaded?: (routes: RouteConfig[]) => void; // TODO remove soon, deprecated (alpha-60)
|
||||
postBuild?: (props: Props) => void;
|
||||
postBuild?: (props: Props & {content: Content}) => Promise<void>;
|
||||
postStart?: (props: Props) => void;
|
||||
// TODO refactor the configureWebpack API surface: use an object instead of multiple params (requires breaking change)
|
||||
configureWebpack?: (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue