We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10abdcb commit 3044280Copy full SHA for 3044280
packages/gatsby/src/redux/reducers/html.ts
@@ -258,6 +258,9 @@ export function htmlReducer(
258
const htmlFile = state.trackedHtmlFiles.get(path)
259
if (htmlFile) {
260
htmlFile.dirty = 0
261
+ // if we regenerated html, slice placeholders will be empty and we will have to fill
262
+ // them in, so we are marking that page for stitching
263
+ state.pagesThatNeedToStitchSlices.add(path)
264
}
265
266
0 commit comments