Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/4d66b34475cfe57fda63dd317bc5d45618791d1c54d5fe4dec50e51963d26db519ddc35c1fe638bb576905d403a1c1006a452c7f546bbf43a8914564bd3895
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
439 B
Text

// MIT lisence
// from https://github.com/substack/tty-browserify/blob/1ba769a6429d242f36226538835b4034bf6b7886/index.js
export function isatty() {
return false;
}
export function ReadStream() {
throw new Error('tty.ReadStream is not implemented');
}
export function WriteStream() {
throw new Error('tty.ReadStream is not implemented');
}
export default {
isatty: isatty,
ReadStream: ReadStream,
WriteStream: WriteStream
}