File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -87,5 +87,7 @@ export async function build(
87
87
await fs . remove ( siteConfig . tempDir )
88
88
}
89
89
90
+ await siteConfig . buildEnd ?.( siteConfig )
91
+
90
92
console . log ( `build complete in ${ ( ( Date . now ( ) - start ) / 1000 ) . toFixed ( 2 ) } s.` )
91
93
}
Original file line number Diff line number Diff line change @@ -71,6 +71,12 @@ export interface UserConfig<ThemeConfig = any> {
71
71
* @default false
72
72
*/
73
73
ignoreDeadLinks ?: boolean
74
+
75
+ /**
76
+ * Build end hook: called when SSG finish.
77
+ * @param siteConfig The resolved configuration.
78
+ */
79
+ buildEnd ?: ( siteConfig : SiteConfig ) => Promise < void >
74
80
}
75
81
76
82
export type RawConfigExports < ThemeConfig = any > =
@@ -88,6 +94,7 @@ export interface SiteConfig<ThemeConfig = any>
88
94
| 'mpa'
89
95
| 'lastUpdated'
90
96
| 'ignoreDeadLinks'
97
+ | 'buildEnd'
91
98
> {
92
99
root : string
93
100
srcDir : string
@@ -166,7 +173,8 @@ export async function resolveConfig(
166
173
vite : userConfig . vite ,
167
174
shouldPreload : userConfig . shouldPreload ,
168
175
mpa : ! ! userConfig . mpa ,
169
- ignoreDeadLinks : userConfig . ignoreDeadLinks
176
+ ignoreDeadLinks : userConfig . ignoreDeadLinks ,
177
+ buildEnd : userConfig . buildEnd
170
178
}
171
179
172
180
return config
You can’t perform that action at this time.
0 commit comments