Rocky_Mountain_Vending/.pnpm-store/v10/files/80/574065f6614a8c467cc8f7602acbfea84e4d917ff7e86032d1f5c0a76611a8e761db93dc394fe5abcf56134a3b5f40b3694070cd2e07b79d8c8511e4745b2c
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

25 lines
811 B
Text

export declare enum Bundler {
Turbopack = 0,
Webpack = 1,
Rspack = 2
}
/**
* Parse the bundler arguments and potentially sets the `TURBOPACK` environment variable.
*
* NOTE: rspack is configured via next config which is chaotic so it is possible for this to be overridden later.
*
* @param options The options to parse.
* @returns The bundler that was configured
*/
export declare function parseBundlerArgs(options: {
turbo?: boolean;
turbopack?: boolean;
webpack?: boolean;
}): Bundler;
/**
* Finalize the bundler based on the config.
*
* Rspack is configured via next config by setting an environment variable (yay, side effects)
* so this should only be called after parsing the config.
*/
export declare function finalizeBundlerFromConfig(fromOptions: Bundler): Bundler;