Rocky_Mountain_Vending/.pnpm-store/v10/files/29/4515cac3a695e06739bae6f1669c9ddfb6949c6839ba543ef7008ab295e52487e44a4edc27410ca69d41fc694b3501331cbf1f03fa34ae21dc0859dc8df849
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
No EOL
618 B
Text

/**
* The rendering mode for a route.
*/ export var RenderingMode = /*#__PURE__*/ function(RenderingMode) {
/**
* `STATIC` rendering mode will output a fully static HTML page or error if
* anything dynamic is used.
*/ RenderingMode["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.
*/ RenderingMode["PARTIALLY_STATIC"] = "PARTIALLY_STATIC";
return RenderingMode;
}({});
//# sourceMappingURL=rendering-mode.js.map