Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/7998880a5736fa327bed51b5515adbc040d892fe6583e0100144301644dd9ecf28efc9c35695d75732a3e4f61fed6ca36a878267f7b9b8ed7c94223cc9603d
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

9 lines
255 B
Text

export interface GlobalConfig {
isSsr?: boolean;
}
export type GlobalConfigKeys = 'isSsr';
export declare const Global: {
isSsr: boolean;
get: (key: 'isSsr') => boolean;
set: (key: GlobalConfigKeys | GlobalConfig, value?: any) => void;
};