Rocky_Mountain_Vending/.pnpm-store/v10/files/7e/ce286684b7fa998f439dbf1f1b799e2ed899a3dc6a0e46a747486c298e0fb4832daff332756842c03d1efbf4de436b245a90dcb6d534ed41b6a80331f281bd
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

28 lines
1.3 KiB
Text

import { type WebpackLayerName } from '../lib/constants';
import type { NextConfigComplete } from '../server/config-shared';
interface CompilerAliases {
[alias: string]: string | string[];
}
export declare function createWebpackAliases({ distDir, isClient, isEdgeServer, dev, config, pagesDir, appDir, dir, reactProductionProfiling, }: {
distDir: string;
isClient: boolean;
isEdgeServer: boolean;
dev: boolean;
config: NextConfigComplete;
pagesDir: string | undefined;
appDir: string | undefined;
dir: string;
reactProductionProfiling: boolean;
}): CompilerAliases;
export declare function createServerOnlyClientOnlyAliases(isServer: boolean): CompilerAliases;
export declare function createNextApiEsmAliases(): Record<string, string>;
export declare function createAppRouterApiAliases(isServerOnlyLayer: boolean): Record<string, string>;
type BundledReactChannel = '' | '-experimental';
export declare function createVendoredReactAliases(bundledReactChannel: BundledReactChannel, { layer, isBrowser, isEdgeServer, reactProductionProfiling, }: {
layer: WebpackLayerName;
isBrowser: boolean;
isEdgeServer: boolean;
reactProductionProfiling: boolean;
}): CompilerAliases;
export declare function getOptimizedModuleAliases(): CompilerAliases;
export {};