mirror of https://github.com/vuejs/vue.git
11 lines
174 B
JavaScript
11 lines
174 B
JavaScript
|
module.exports = {
|
||
|
entry: './src/vue',
|
||
|
output: {
|
||
|
path: './dist',
|
||
|
filename: 'vue.js',
|
||
|
library: 'Vue',
|
||
|
libraryTarget: 'umd'
|
||
|
},
|
||
|
devtool: '#source-map'
|
||
|
}
|