Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/1736c60d34c0f52173ff972ea9f974f7a288e45a28b6b63b496e9d56ab2e07bcbdb114f0e7e44057433fc198c7e1210c1e053bfba580e8f63c53e5cc2216df
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

13 lines
No EOL
656 B
Text

import ciEnvironment from 'next/dist/compiled/ci-info';
const { isCI: _isCI, name: _name } = ciEnvironment;
const isZeitNow = !!process.env.NOW_BUILDER;
const envStack = process.env.STACK;
const isHeroku = typeof envStack === 'string' && envStack.toLowerCase().includes('heroku');
export const isCI = isZeitNow || isHeroku || _isCI;
export const name = isZeitNow ? 'ZEIT Now' : isHeroku ? 'Heroku' : _name;
// This boolean indicates if the CI platform has first-class Next.js support,
// which allows us to disable certain messages which do not require their
// action.
export const hasNextSupport = Boolean(isZeitNow);
//# sourceMappingURL=ci-info.js.map