mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
export interface VitePluginCompression {
|
|
/**
|
|
* Log compressed files and their compression ratios.
|
|
* @default: true
|
|
*/
|
|
verbose?: boolean
|
|
/**
|
|
* Minimum file size before compression is used.
|
|
* @default 1025
|
|
*/
|
|
threshold?: number
|
|
/**
|
|
* Filter files that do not need to be compressed
|
|
* @default /\.(js|mjs|json|css|html)$/i
|
|
*/
|
|
filter?: RegExp | ((file: string) => boolean)
|
|
/**
|
|
* Whether to enable compression
|
|
* @default: false
|
|
*/
|
|
disable?: boolean
|
|
/**
|
|
* Compression algorithm
|
|
* @default gzip
|
|
*/
|
|
algorithm?: Algorithm
|
|
/**
|
|
* File format after compression
|
|
* @default .gz
|
|
*/
|
|
ext?: string
|
|
/**
|
|
* Compression Options
|
|
*/
|
|
compressionOptions?: {}
|
|
/**
|
|
* Delete the corresponding source file after compressing the file
|
|
* @default: false
|
|
*/
|
|
deleteOriginFile?: boolean
|
|
/**
|
|
* success callback after completed
|
|
*/
|
|
success?: () => void
|
|
}
|
|
|
|
export interface ViteBuildPlugin {
|
|
outDir: string
|
|
assetsDir: string
|
|
assetsInlineLimit: number
|
|
cssCodeSplit: boolean //拆分css代码
|
|
minify: boolean | 'esbuild' | 'terser'
|
|
sourcemap: boolean
|
|
}
|