aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/webpack.config.js
blob: 629138aec18be9ac73a53bcaddd7756b8c059199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var path = require('path');

module.exports = {
  entry: './src/entry',
  output: {
    path: path.join(__dirname, 'dist'),
    filename: 'app.js'
  },
  resolve: {
    modulesDirectories: [
      'node_modules',
      'web_modules',
      'output'
    ]
  }
};