Rocky_Mountain_Vending/.pnpm-store/v10/files/77/9f2ef28e9e789351724b355683e977e526f7b2042f2b172e59c566eb846989d0845754981fdf41afcec4f69bf786289618e405e3867ee0d60c9218b4b22712
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

20 lines
546 B
Text

# @cloudflare/unenv-preset
[unenv](https://github.com/unjs/unenv) preset for cloudflare.
unenv provides polyfills to add [Node.js](https://nodejs.org/) compatibility for any JavaScript runtime, including browsers and edge workers.
## Usage
```ts
import { cloudflare } from "@cloudflare/unenv-preset";
import { defineEnv } from "unenv";
const { env } = defineEnv({
presets: [cloudflare],
});
const { alias, inject, external, polyfill } = env;
```
See the unenv [README](https://github.com/unjs/unenv/blob/main/README.md) for more details.