13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
|
const Webpack = require('webpack')
|
||
|
const { webpackBanner } = require('./config.ts')
|
||
|
|
||
|
module.exports = {
|
||
|
createBanner: (config) => {
|
||
|
config
|
||
|
.plugin('banner')
|
||
|
.use(Webpack.BannerPlugin, [
|
||
|
`${webpackBanner}${process.env.VUE_APP_UPDATE_TIME}`,
|
||
|
])
|
||
|
},
|
||
|
}
|