vue 如何将打包时间记录到html的head里面

在vue.config.js文件中,对chainWebpack的配置进行设置

chainWebpack(config) {
    config.plugin('html')
      .tap(args => {
        const date = new Date()
        args[0].title = '网站的标题'
        args[0].buildDate = date
        return args
      })
}

在index.html里面增加下面的代码:

<meta name="time" content="<%= htmlWebpackPlugin.options.buildDate %>" />

 

posted @ 2023-01-17 15:18  wjs0509  阅读(174)  评论(0编辑  收藏  举报