Rocky_Mountain_Vending/.pnpm-store/v10/files/85/8236e630969f29d46655fab729292f4bb3a3a9fdd96962a3cc3f9ce7bfcd6ae3b8e11e982ab48fe558219cd9f7d48fbda10e6a2f3f5cd45a4056d2bc4cb821
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
416 B
Text

import type { webpack } from 'next/dist/compiled/webpack/webpack';
type Compiler = webpack.Compiler;
type WebpackPluginInstance = webpack.WebpackPluginInstance;
export declare class NextJsRequireCacheHotReloader implements WebpackPluginInstance {
prevAssets: any;
serverComponents: boolean;
constructor(opts: {
serverComponents: boolean;
});
apply(compiler: Compiler): void;
}
export {};