Rocky_Mountain_Vending/.pnpm-store/v10/files/78/6f18c7404465151ea070dbe99303c394b79eee8663461125c60e4e083151f25ad9968eb7a1218baeab3ab4b3e5a000ddff985209a82eccd3df7cee831b422f
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

18 lines
882 B
Text

import type { COMPILER_INDEXES } from '../../shared/lib/constants';
import { type TelemetryPluginState } from '../webpack/plugins/telemetry-plugin/telemetry-plugin';
import { NextBuildContext } from '../build-context';
import { type TraceEvent, type TraceState } from '../../trace';
import type { BuildTraceContext } from '../webpack/plugins/next-trace-entrypoints-plugin';
export declare function webpackBuildImpl(compilerName: keyof typeof COMPILER_INDEXES | null): Promise<{
duration: number;
pluginState: any;
buildTraceContext?: BuildTraceContext;
telemetryState?: TelemetryPluginState;
}>;
export declare function workerMain(workerData: {
compilerName: keyof typeof COMPILER_INDEXES;
buildContext: typeof NextBuildContext;
traceState: TraceState;
}): Promise<Awaited<ReturnType<typeof webpackBuildImpl>> & {
debugTraceEvents: TraceEvent[];
}>;