Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/80e9148f0989d67aa21296e5aed6bf7455d9153356280bca844f2a9ef7945cafe339b539838fc290e385e64b9799fe0deee790160ceb5c64d36a7669e287ea
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

20 lines
775 B
Text

import { webpack } from 'next/dist/compiled/webpack/webpack';
interface PluginOptions {
shouldIgnorePath?: (path: string) => boolean;
isSourceMapAsset?: (name: string) => boolean;
}
interface ValidatedOptions extends PluginOptions {
shouldIgnorePath: Required<PluginOptions>['shouldIgnorePath'];
isSourceMapAsset: Required<PluginOptions>['isSourceMapAsset'];
}
/**
* This plugin adds a field to source maps that identifies which sources are
* vendored or runtime-injected (aka third-party) sources. These are consumed by
* Chrome DevTools to automatically ignore-list sources.
*/
export default class DevToolsIgnorePlugin {
options: ValidatedOptions;
constructor(options?: PluginOptions);
apply(compiler: webpack.Compiler): void;
}
export {};