Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/6d8447cf9e4f3faeecfbb4c8ce31b3bbbe55b3e33ed1f1ae3d355c688c7188e6ff65961f48b9c8ff124a53d2ca6b61f777b1b3683b6e19f5be425503282f5a
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
480 B
Text

export class File extends Blob {
__unenv__ = true;
size = 0;
type = "";
name = "";
lastModified = 0;
constructor(...args) {
super(...args);
throw new Error("[unenv] buffer.File is not implemented");
}
arrayBuffer() {
throw new Error("Not implemented");
}
slice() {
throw new Error("Not implemented");
}
text() {
throw new Error("Not implemented");
}
stream() {
throw new Error("Not implemented");
}
bytes() {
throw new Error("Not implemented");
}
}