Rocky_Mountain_Vending/.pnpm-store/v10/files/56/cc2ba901b87d6e8c8430e96a6fe8da6d8b4bd706cdb19c9e3aafc8fd503ad3baff434e3065da830703c47650b60554da8ecde47e305d4f1a5aea4cf8d79a2d
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

50 lines
1.8 KiB
Text

import type { BuildManifest } from '../../server/get-page-files';
import type { ServerRuntime } from '../../types';
import type { NEXT_DATA } from './utils';
import type { NextFontManifest } from '../../build/webpack/plugins/next-font-manifest-plugin';
import type { DeepReadonly } from './deep-readonly';
import { type JSX } from 'react';
export type HtmlProps = {
__NEXT_DATA__: NEXT_DATA;
nonce?: string;
dangerousAsPath: string;
docComponentsRendered: {
Html?: boolean;
Main?: boolean;
Head?: boolean;
NextScript?: boolean;
};
buildManifest: BuildManifest;
isDevelopment: boolean;
dynamicImports: string[];
/**
* This manifest is only needed for Pages dir, Production, Webpack
* @see https://github.com/vercel/next.js/pull/72959
*/
dynamicCssManifest: Set<string>;
assetPrefix?: string;
headTags: any[];
unstable_runtimeJS?: false;
unstable_JsPreload?: false;
assetQueryString: string;
scriptLoader: {
afterInteractive?: string[];
beforeInteractive?: any[];
worker?: any[];
};
locale?: string;
disableOptimizedLoading?: boolean;
styles?: React.ReactElement[] | Iterable<React.ReactNode>;
head?: Array<JSX.Element | null>;
crossOrigin?: 'anonymous' | 'use-credentials' | '' | undefined;
optimizeCss?: any;
nextConfigOutput?: 'standalone' | 'export';
nextScriptWorkers?: boolean;
runtime?: ServerRuntime;
hasConcurrentFeatures?: boolean;
largePageDataBytes?: number;
nextFontManifest?: DeepReadonly<NextFontManifest>;
experimentalClientTraceMetadata?: string[];
};
export declare const HtmlContext: import("react").Context<HtmlProps | undefined>;
export declare function useHtmlContext(): HtmlProps;