Guest User

Untitled

a guest
Feb 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const ManifestPlugin = require('webpack-manifest-plugin');
  2.  
  3. module.exports = {
  4. // ...other webpack config stuff (entry, output, modules)
  5.  
  6. plugins: [
  7. new ManifestPlugin({
  8. fileName: 'asset-manifest.json',
  9. }),
  10.  
  11. // ...other plugins
  12. ],
  13. }
Add Comment
Please, Sign In to add comment