mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 20:35:49 +08:00
16 lines
386 B
JavaScript
16 lines
386 B
JavaScript
const webpack = require('webpack');
|
|
const config = require('./webpack.prod.conf');
|
|
|
|
webpack(config, (err, stats) => {
|
|
if (err || stats.hasErrors()) {
|
|
// 在这里处理错误
|
|
console.error(err);
|
|
return;
|
|
}
|
|
// 处理完成
|
|
console.log(stats.toString({
|
|
chunks: false, // 使构建过程更静默无输出
|
|
colors: true // 在控制台展示颜色
|
|
}));
|
|
});
|