lightningcss-loader
Version:
Speed up your Webpack build with lightningcss
10 lines (9 loc) • 311 B
TypeScript
import { IMinifyPluginOpts } from './interface';
import type { Compiler } from 'webpack';
export declare class LightningCssMinifyPlugin {
private readonly options;
private readonly transform;
constructor(opts?: IMinifyPluginOpts);
apply(compiler: Compiler): void;
private transformAssets;
}