Rocky_Mountain_Vending/.pnpm-store/v10/files/81/58035c4d8635ad70296b2de642c016191e63dad0a125ed26ab985d1e379ee94dc95f4533e53a4eb0dad143ea4188863f1db55ed50ee1b1f8e34d0aa67a8adf
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

6 lines
453 B
Text

import type { NextJsHotReloaderInterface } from './hot-reloader-types';
import { type ServerFields, type SetupOpts } from '../lib/router-utils/setup-dev-bundler';
import type { Lockfile } from '../../build/lockfile';
export declare function createHotReloaderTurbopack(opts: SetupOpts & {
isSrcDir: boolean;
}, serverFields: ServerFields, distDir: string, resetFetch: () => void, lockfile: Lockfile | undefined): Promise<NextJsHotReloaderInterface>;