Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/e58e8f59648fd3153599bc07edd28b042c75c10256a60126ced83274eb5ad146ffe610559ac19ae78b75997ffcf1c00ed574d5deed0767f2cefc3a9971cf45
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

16 lines
506 B
Text

/**
* The rendering mode for a route.
*/
export declare const enum RenderingMode {
/**
* `STATIC` rendering mode will output a fully static HTML page or error if
* anything dynamic is used.
*/
STATIC = "STATIC",
/**
* `PARTIALLY_STATIC` rendering mode will output a fully static HTML page if
* the route is fully static, but will output a partially static HTML page if
* the route uses uses any dynamic API's.
*/
PARTIALLY_STATIC = "PARTIALLY_STATIC"
}