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>
6 lines
453 B
Text
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>;
|