Rocky_Mountain_Vending/.pnpm-store/v10/files/8a/08ed9b196c196ed7795cab46c0dd3478ab66c1d13f4a900f5d903d5f7cba07a0b3bbb2f8b149bd3c543b05c20d7ac935c2108e3a1a47a920c80df9c39c2139
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

8 lines
262 B
Text

function _define_property(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });
} else obj[key] = value;
return obj;
}
export { _define_property as _ };