webpack.config.js 115 B

12345678
  1. module.exports = {
  2. entry: './build/index.js',
  3. output: {
  4. filename: './build/bundle.js'
  5. },
  6. bail: true
  7. }