mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-06 04:09:36 +00:00
18 lines
444 B
TypeScript
18 lines
444 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 gzipPlugin from 'rollup-plugin-gzip';
|
|
import { isBuildGzip } from '../../utils';
|
|
|
|
export function configGzipPlugin(isBuild: boolean): Plugin | Plugin[] {
|
|
const useGzip = isBuild && isBuildGzip();
|
|
|
|
if (useGzip) {
|
|
return gzipPlugin();
|
|
}
|
|
|
|
return [];
|
|
}
|