Rocky_Mountain_Vending/.pnpm-store/v10/files/b5/a91c60c3b83c280444e58e24ae90be1607732fe01c0fd780befbaefc64461050c5bb0234f89110ddda62eb0e6cfdc58012ef957ca1ecb428689f3689cdf613
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

24 lines
960 B
Text

import type { webpack } from 'next/dist/compiled/webpack/webpack';
import type { NextConfigComplete } from '../../../server/config-shared';
export type ConfigurationContext = {
hasAppDir: boolean;
isAppDir?: boolean;
supportedBrowsers: string[] | undefined;
rootDirectory: string;
customAppFile: RegExp | undefined;
isDevelopment: boolean;
isProduction: boolean;
isServer: boolean;
isClient: boolean;
isEdgeRuntime: boolean;
targetWeb: boolean;
assetPrefix: string;
sassOptions: any;
productionBrowserSourceMaps: boolean;
serverSourceMaps: boolean;
transpilePackages: NextConfigComplete['transpilePackages'];
future: NextConfigComplete['future'];
experimental: NextConfigComplete['experimental'];
};
export type ConfigurationFn = (a: webpack.Configuration) => webpack.Configuration;
export declare const pipe: <R>(...fns: Array<(a: R) => R | Promise<R>>) => (param: R) => R | Promise<R>;