soundcloud / chunk-manifest-webpack-plugin

Allows exporting a manifest that maps entry chunk names to their output files, instead of keeping the mapping inside the webpack bootstrap.
MIT License
395 stars 73 forks source link

inlineManifest #35

Open svipas opened 7 years ago

svipas commented 7 years ago

Hello,

does it makes sense to use inlineManifest if I have this:

    new webpack.optimize.CommonsChunkPlugin({
      names: ['vendor', 'manifest'],
      minChunks: Infinity
    }),
    new ChunkManifestPlugin({
      filename: 'chunks-manifest.json',
      manifestVariable: 'webpackManifest'
    }),

Or without inlineManifest it doesn't work correctly with html-webpack-plugin?

svipas commented 7 years ago

@spadgos