Rocky_Mountain_Vending/.pnpm-store/v10/files/4d/bc264e3ca4381b495a1aae3fc1bfbd75aaed2ad48e26e67704ea857e708732b94d256c96cd4e337868d7798595801867e45531e8d4999faf1a6b32092c7297
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

22 lines
754 B
Text

import { webpack } from 'next/dist/compiled/webpack/webpack';
export type PagesManifest = {
[page: string]: string;
};
export declare let edgeServerPages: {};
export declare let nodeServerPages: {};
export declare let edgeServerAppPaths: {};
export declare let nodeServerAppPaths: {};
export default class PagesManifestPlugin implements webpack.WebpackPluginInstance {
dev: boolean;
distDir?: string;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
constructor({ dev, distDir, isEdgeRuntime, appDirEnabled, }: {
dev: boolean;
distDir?: string;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
});
createAssets(compilation: any): Promise<void>;
apply(compiler: webpack.Compiler): void;
}