mirror of
https://github.com/youzan/vant.git
synced 2025-10-18 17:51:54 +00:00
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
var Components = require('../components.json');
|
|
var config = require('./webpack.config.js');
|
|
|
|
delete config.devtool;
|
|
|
|
config.entry = Components;
|
|
|
|
config.output = {
|
|
path: './lib',
|
|
filename: '[name].js',
|
|
libraryTarget: 'umd'
|
|
};
|
|
|
|
module.exports = config;
|