kun_loading
Version:
Im kun Loading!Based on Vue2 version!Jump, Sing and rapper!
23 lines (22 loc) • 474 B
JavaScript
// vue.config.js
module.exports = {
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
chainWebpack: config => {
config.module
.rule('js')
.include
.add('/packages')
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
return options
})
}
}