Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/9612f817335a032e2040e348bb86d086d50af258a6ced6eb9710ee40a874a0d72188dda6c82d45725e7aed4c8830da54645f8aa4acc63807ed6495ae7b5d3c
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

14 lines
258 B
Text

const constants = { // just for envs without fs
S_IFMT: 61440,
S_IFDIR: 16384,
S_IFCHR: 8192,
S_IFBLK: 24576,
S_IFIFO: 4096,
S_IFLNK: 40960
}
try {
module.exports = require('fs').constants || constants
} catch {
module.exports = constants
}