Rocky_Mountain_Vending/.pnpm-store/v10/files/db/95cf1c34e173dcb827aa72258b743277286f26cd1218d0c6cbb1e765aa0a6de9623eb8f450ef5150901c139a4522437a746c8f51641df0acd5667e2ab63430
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

18 lines
574 B
Text

import { webpack, sources } from 'next/dist/compiled/webpack/webpack';
type CssMinimizerPluginOptions = {
postcssOptions: {
map: false | {
prev?: string | false;
inline: boolean;
annotation: boolean;
};
};
};
export declare class CssMinimizerPlugin {
__next_css_remove: boolean;
private options;
constructor(options: CssMinimizerPluginOptions);
optimizeAsset(file: string, asset: any): Promise<sources.RawSource | sources.SourceMapSource>;
apply(compiler: webpack.Compiler): void;
}
export {};