UNPKG

164 BJavaScriptView Raw
1var path = require('path');
2
3module.exports = {
4 entry: './app/index.js',
5 output: {
6 filename: 'bundle.js',
7 path: path.resolve(__dirname, 'dist')
8 }
9};
10