Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/e9bffcdc6676da81b72e105db90fee67568a653ea5a8e93413d31e635ba734f12cba46033dfbcfcccc1a8e4a4f7f691b23d88a1a184ca758bce2f03de7a4e6
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

11 lines
540 B
Text

import type { NextConfig } from '../../../../server/config-shared';
import type { PageExtensions } from '../../../page-extensions-type';
export declare function createAppRouteCode({ appDir, name, page, pagePath, resolveAppRoute, pageExtensions, nextConfigOutput, }: {
appDir: string;
name: string;
page: string;
pagePath: string;
resolveAppRoute: (pathname: string) => Promise<string | undefined> | string | undefined;
pageExtensions: PageExtensions;
nextConfigOutput: NextConfig['output'];
}): Promise<string>;