mirror of
https://github.com/xsf0105/vue3-h5-template.git
synced 2025-04-06 04:00:04 +08:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
const webpack = require('webpack');
|
|
const config = require('./webpack.prod.conf');
|
|
|
|
webpack(config, (err, stats) => {
|
|
if (err || stats.hasErrors()) {
|
|
console.error(err); // 错误打印
|
|
return;
|
|
}
|
|
}); |