Output Management

This commit is contained in:
Joe
2018-06-28 12:19:48 -05:00
parent 83c9051ace
commit b10be0ca77
5 changed files with 21 additions and 4 deletions

View File

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