Rocky_Mountain_Vending/.pnpm-store/v10/files/24/64fcdcd1b4a3d9899092cd505d2d01451db059669af03d2f8f44617db95a6413f1f92029f8c974c57be95c314b81e859bb1acfd5fed5abf431e382b47a29c7
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

11 lines
487 B
JavaScript

#!/usr/bin/env node
export type NextInfoOptions = {
verbose?: boolean;
};
/**
* Runs few scripts to collect system information to help with debugging next.js installation issues.
* There are 2 modes, by default it collects basic next.js installation with runtime information. If
* `--verbose` mode is enabled it'll try to collect, verify more data for next-swc installation and others.
*/
declare const nextInfo: (options: NextInfoOptions) => Promise<void>;
export { nextInfo };