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>
19 lines
1.2 KiB
Text
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;
|
|
};
|