mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 03:57:36 +08:00
24 lines
406 B
JavaScript
24 lines
406 B
JavaScript
var webpack = require('webpack')
|
|
|
|
module.exports = {
|
|
entry: './src/vue',
|
|
output: {
|
|
path: './dist',
|
|
filename: 'vue.min.js',
|
|
library: 'Vue',
|
|
libraryTarget: 'umd'
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: '"production"'
|
|
}
|
|
}),
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false
|
|
}
|
|
})
|
|
]
|
|
}
|