Rocky_Mountain_Vending/.pnpm-store/v10/files/63/da7b6c5f558dbc94267c0a2b654dc85e3e5f8c6b94e2640050595742db6cff1607dfa5fa88b44ab015789b712a0276201cfd394297bdb6360c09b59c30df47
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
866 B
Text

import type { NextConfig } from '../../../types';
import { type WebpackLayerName } from '../../../lib/constants';
import { type CompilerNameValues } from '../../../shared/lib/constants';
export interface SWCLoaderOptions {
rootDir: string;
isServer: boolean;
compilerType: CompilerNameValues;
pagesDir?: string;
appDir?: string;
hasReactRefresh: boolean;
optimizeServerReact?: boolean;
nextConfig: NextConfig;
jsConfig: any;
supportedBrowsers: string[] | undefined;
swcCacheDir: string;
serverComponents?: boolean;
serverReferenceHashSalt: string;
bundleLayer?: WebpackLayerName;
esm?: boolean;
transpilePackages?: string[];
}
export declare function pitch(this: any): void;
export default function swcLoader(this: any, inputSource: string, inputSourceMap: any): void;
export declare const raw = true;