Skip to content

Instantly share code, notes, and snippets.

@okonet
Created July 11, 2015 19:51
Show Gist options
  • Save okonet/5037319f558e1577df25 to your computer and use it in GitHub Desktop.
Save okonet/5037319f558e1577df25 to your computer and use it in GitHub Desktop.
// webpack.config.js
var ChunkManifestPlugin = require('chunk-manifest-webpack-plugin');
module.exports = {
// your config values here
plugins: [
new ChunkManifestPlugin({
filename: "chunk-manifest.json",
manifestVariable: "webpackManifest"
})
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment