Rocky_Mountain_Vending/.pnpm-store/v10/files/94/a51e90e3ddb3beb5e5760bc39e2ad09692ff21e3722679cc6a6e595a7043b5f98a71cfb4e1aad558311803de16331693a5377ece75db5ef87b4a37acefd360
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

12 lines
413 B
Text

import type { Compiler } from 'webpack';
import type { CompilerNameValues } from '../../../shared/lib/constants';
interface ModuleBuildTimeAnalyzerOptions {
compilerType: CompilerNameValues;
buildTimeThresholdMs: number;
}
export default class SlowModuleDetectionPlugin {
private options;
constructor(options: ModuleBuildTimeAnalyzerOptions);
apply: (compiler: Compiler) => void;
}
export {};