6 lines
114 B
JavaScript
6 lines
114 B
JavaScript
|
module.exports = {
|
||
|
chainWebpack: config => {
|
||
|
config.entry.app = ['babel-polyfill', './src/main.js'];
|
||
|
},
|
||
|
}
|