File size: 248 Bytes
c679a93
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
const path = require('path')

module.exports = {
  mode: 'development',
  devtool: 'eval-cheap-source-map',
  stats: 'minimal',
  entry: './client/client.js',
  output: {
    filename: 'bundle.js',
    path: path.resolve(__dirname, 'client')
  }
}