|
@@ -137,6 +137,14 @@ module.exports = {
|
|
|
config.optimization.runtimeChunk('single')
|
|
|
}
|
|
|
)
|
|
|
+ config.plugin("html").tap(args => {
|
|
|
+ // 可以只配置只在生产环境中显示
|
|
|
+ // if (process.env.NODE_ENV === "production") {
|
|
|
+ const date = new Date();
|
|
|
+ args[0].builtTime = date.toLocaleString();
|
|
|
+ // }
|
|
|
+ return args;
|
|
|
+ })
|
|
|
},
|
|
|
css: {
|
|
|
loaderOptions: {
|