Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/6ff414810c148f7ee39274cd2bce8c8b917302ba71726c0248e0f2e0f8f608ab8c3b0a3216ee96a76ede32c7cb266cfbe1c6a2931a1bcaead3dc8a38dcd44c
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
515 B
Text

import type { ProxyMatcher } from '../../analysis/get-page-static-info';
export type MiddlewareLoaderOptions = {
absolutePagePath: string;
page: string;
rootDir: string;
matchers?: string;
preferredRegion: string | string[] | undefined;
middlewareConfig: string;
};
export declare function encodeMatchers(matchers: ProxyMatcher[]): string;
export declare function decodeMatchers(encodedMatchers: string): ProxyMatcher[];
export default function middlewareLoader(this: any): Promise<string>;