Rocky_Mountain_Vending/.pnpm-store/v10/files/24/2ea9fc4483b1defdc495e786eb388059309b647b4bca81dc2fe75d443a398cd7dfd6b34e4a897a5fde396b326f311eccc1b1d248914bd3df81e6322f5ffcdd
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

9 lines
391 B
Text

import type { GetStaticPaths } from '../../types';
import type { StaticPathsResult } from './types';
export declare function buildPagesStaticPaths({ page, getStaticPaths, configFileName, locales, defaultLocale, }: {
page: string;
getStaticPaths: GetStaticPaths;
configFileName: string;
locales?: readonly string[];
defaultLocale?: string;
}): Promise<StaticPathsResult>;