mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(cli): build site failed
This commit is contained in:
parent
8fc7e6e611
commit
2dba8c9455
@ -12,7 +12,11 @@ const PLUGIN_NAME = 'VantCliSitePlugin';
|
|||||||
|
|
||||||
export class VantCliSitePlugin {
|
export class VantCliSitePlugin {
|
||||||
apply(compiler: Compiler) {
|
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() {
|
genSiteEntry() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user