build: fix vant-doc webpack config (#4326)

This commit is contained in:
neverland 2019-09-02 22:19:49 +08:00 committed by GitHub
parent 329e751351
commit 042bfb15b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,7 @@
const path = require('path');
const baseWebpackConfig = require('../../../build/webpack.dev');
const baseWebpackConfig = require('../../../build/webpack.pkg');
module.exports = Object.assign(baseWebpackConfig, {
mode: 'production',
entry: {
index: './src/index.js'
},
@ -10,13 +9,5 @@ module.exports = Object.assign(baseWebpackConfig, {
path: path.resolve(__dirname, '../lib'),
filename: '[name].js',
libraryTarget: 'commonjs2'
},
externals: {
vue: {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue'
}
}
});