Rocky_Mountain_Vending/.pnpm-store/v10/files/36/b36799a47b61d92bd27eb8b4a01e9557fd1574f4eedd84af4b17a3720a3d08c7cf0b40c40b986988d881b0eb6f04037152720e6cc1b2f00239572bed4bb661
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

26 lines
No EOL
826 B
Text

/**
* The rendering mode for a route.
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "RenderingMode", {
enumerable: true,
get: function() {
return RenderingMode;
}
});
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