Skip to content

vue 配置打包后的个人信息注释

js
const webpack = require('webpack')
// 服务器用这个导出
module.exports = {
    outputDir: 'build',
    configureWebpack: {
        plugins: [
            new webpack.BannerPlugin({
                banner: 'author: Mad Dragon (395548460@qq.com)' + new Date()
            })
        ]
    }
}