Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/62f07df7689a45ed6dc9e346830767e2c74effb317d7a158380161717d295acefcf2350a93b1c35ce9af6ae765702fe1c0dc7ea07a5a773b378725597df64c
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

19 lines
1.2 KiB
Text

import { type PHASE_TYPE } from '../shared/lib/constants';
import type { ExperimentalConfig, NextConfigComplete, NextConfig } from './config-shared';
export { normalizeConfig } from './config-shared';
export type { DomainLocale, NextConfig } from './config-shared';
export declare function warnOptionHasBeenDeprecated(config: NextConfig, nestedPropertyKey: string, reason: string, silent: boolean): boolean;
export declare function warnOptionHasBeenMovedOutOfExperimental(config: NextConfig, oldExperimentalKey: string, newKey: string, configFileName: string, silent: boolean): NextConfig;
export default function loadConfig(phase: PHASE_TYPE, dir: string, { customConfig, rawConfig, silent, reportExperimentalFeatures, reactProductionProfiling, debugPrerender, }?: {
customConfig?: object | null;
rawConfig?: boolean;
silent?: boolean;
reportExperimentalFeatures?: (configuredExperimentalFeatures: ConfiguredExperimentalFeature[]) => void;
reactProductionProfiling?: boolean;
debugPrerender?: boolean;
}): Promise<NextConfigComplete>;
export type ConfiguredExperimentalFeature = {
key: keyof ExperimentalConfig;
value: ExperimentalConfig[keyof ExperimentalConfig];
reason?: string;
};