Files
webpack/webpack.config.js
2018-06-27 19:18:51 -05:00

9 lines
170 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist')
}
};