webpack.config.js 182 B

123456789
  1. module.exports = {
  2. entry: './build/index.js',
  3. mode: 'development',
  4. output: {
  5. path: require('path').join(__dirname, 'build'),
  6. filename: 'bundle.js'
  7. },
  8. bail: true
  9. };