Rocky_Mountain_Vending/.pnpm-store/v10/files/9b/d459a2dad8c6bd505b17316d09c6d3da7974630bc2e6bae0544fde6262d97ae0720204c87a5012de0cf201d384490d28d93ba21c63ae2097647f3ffcc6cbdc
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
877 B
Text

import type { CustomRoutes, Rewrite } from '../../../lib/load-custom-routes';
import type { BuildManifest } from '../../../server/get-page-files';
export type ClientBuildManifest = {
[key: string]: string[];
};
export declare const srcEmptySsgManifest = "self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()";
export declare const processRoute: (r: Rewrite) => {
source: string;
destination: string;
basePath?: false;
locale?: false;
has?: import("../../../lib/load-custom-routes").RouteHas[];
missing?: import("../../../lib/load-custom-routes").RouteHas[];
internal?: boolean;
regex?: string;
};
export declare function normalizeRewritesForBuildManifest(rewrites: CustomRoutes['rewrites']): CustomRoutes['rewrites'];
export declare function createEdgeRuntimeManifest(originAssetMap: Partial<BuildManifest>): string;