12 lines
226 B
JavaScript
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')
|
|
}
|
|
}; |