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 bc0b50d commit 8077f42Copy full SHA for 8077f42
packages/next/build/webpack/plugins/flight-manifest-plugin.ts
@@ -56,12 +56,12 @@ export class FlightManifestPlugin {
56
// @ts-ignore TODO: Remove ignore when webpack 5 is stable
57
stage: webpack.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS,
58
},
59
- (assets: any) => this.createAsset(assets, compilation, compiler)
+ (assets: any) => this.createAsset(assets, compilation)
60
)
61
})
62
}
63
64
- createAsset(assets: any, compilation: any, compiler: any) {
+ createAsset(assets: any, compilation: any) {
65
const json: any = {}
66
const { clientComponentsRegex } = this
67
compilation.chunkGroups.forEach((chunkGroup: any) => {
0 commit comments