nuxt如何将文件打包为gz.tar
nuxt.config.js
const FileManagerPlugin = require('filemanager-webpack-plugin')
....
extend(
config: WebpackConfiguration,
ctx: {
isDev: boolean
isClient: boolean
isServer: boolean
loaders: any
}
): void {
if (!ctx.isDev && !ctx.isClient) {
// 本地打包执行,server打包时
config.plugins?.push(
new FileManagerPlugin({
events: {
onEnd: {
archive: [
{
source: `tar/`,
destination: `tar/test.tar.gz`,
format: 'tar',
options: {
gzip: true,
gzipOptions: {
level: 9
},
globOptions: {
nomount: true
}
}
}
]
},
},
})
)
}
这里功能是实现了,但是打包出来的文件明显减少了,估计在server打包的时候没有处理,当client完成后,就开始打包成gz.tag,请问有什么方法吗
转载自:https://segmentfault.com/a/1190000040228197