Files
webpack/webpack.config.js
2018-06-28 12:19:48 -05:00

12 lines
226 B
JavaScript

const path = require('path');
module.exports = {
entry: {
app: './src/index.js',
print: './src/print.js'
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
}
};