mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-24 18:40:19 +08:00
30 lines
704 B
TypeScript
30 lines
704 B
TypeScript
|
/**
|
||
|
* Used to package and output gzip. Note that this does not work properly in Vite, the specific reason is still being investigated
|
||
|
*/
|
||
|
import type { Plugin } from 'vite';
|
||
|
|
||
|
import compressPlugin from 'vite-plugin-compression';
|
||
|
|
||
|
export function configCompressPlugin(compress: 'gzip' | 'brotli' | 'none'): Plugin | Plugin[] {
|
||
|
const compressList = compress.split(',');
|
||
|
|
||
|
const plugins: Plugin[] = [];
|
||
|
|
||
|
if (compressList.includes('gzip')) {
|
||
|
plugins.push(
|
||
|
compressPlugin({
|
||
|
ext: '.gz',
|
||
|
})
|
||
|
);
|
||
|
}
|
||
|
if (compressList.includes('brotli')) {
|
||
|
plugins.push(
|
||
|
compressPlugin({
|
||
|
ext: '.br',
|
||
|
algorithm: 'brotliCompress',
|
||
|
})
|
||
|
);
|
||
|
}
|
||
|
return plugins;
|
||
|
}
|