fix(cli): build site failed

This commit is contained in:
陈嘉涵 2019-12-13 10:13:17 +08:00
parent 8fc7e6e611
commit 2dba8c9455

View File

@ -12,7 +12,11 @@ const PLUGIN_NAME = 'VantCliSitePlugin';
export class VantCliSitePlugin {
apply(compiler: Compiler) {
compiler.hooks.watchRun.tapPromise(PLUGIN_NAME, this.genSiteEntry);
if (process.env.NODE_ENV === 'production') {
compiler.hooks.beforeCompile.tapPromise(PLUGIN_NAME, this.genSiteEntry);
} else {
compiler.hooks.watchRun.tapPromise(PLUGIN_NAME, this.genSiteEntry);
}
}
genSiteEntry() {