我能够将 webpack 日志抑制到下面。 以下 3 个编译的日志:
Webpack bundle stats plugin took 10174 ms
2024-06-14 13:42:29: webpack compiled successfully
2024-06-14 13:40:31: webpack compiled successfully
Webpack bundle stats plugin took 9450 ms
2024-06-14 13:43:32: webpack compiled successfully
2024-06-14 13:40:31: webpack compiled successfully
Webpack bundle stats plugin took 9633 ms
2024-06-14 13:44:09: webpack compiled successfully
2024-06-14 13:40:31: webpack compiled successfully
注意 '2024-06-14 13:40:31: .." 日志重复出现 (3) 3 次编译。 此行在每次重新编译时都具有相同的时间戳。
这个恒定的旧时间戳值会造成编译时间的混乱。
有没有办法关闭第二个“webpack编译成功”(带有恒定时间戳)行?
这是由于 webpack 配置中存在多个配置。 因此,每个配置都会出现一个“webpack 编译成功”。
这是有效的行为。