Rocky_Mountain_Vending/.pnpm-store/v10/files/57/ad3ed4c2273c402d8557aea8142997282657643f8969ab104194db6a5eaed3f439ac43ac70a1c663656e66a5c40c6f460baa5920f98427edb4888e0dca9214
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

13 lines
536 B
Text

import { sources, type CacheFacade, type Compilation } from 'next/dist/compiled/webpack/webpack';
export declare class MinifyPlugin {
private options;
constructor(options: {
noMangling?: boolean;
disableCharFreq?: boolean;
});
optimize(compiler: any, compilation: Compilation, assets: any, cache: CacheFacade, { SourceMapSource, RawSource, }: {
SourceMapSource: typeof sources.SourceMapSource;
RawSource: typeof sources.RawSource;
}): Promise<void>;
apply(compiler: any): void;
}