mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 20:17:52 +08:00
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'
|
|
}
|