Rocky_Mountain_Vending/.pnpm-store/v10/files/1b/10a4b8c7fe09e513c0605b4b15aef149561563d4635b9195e823b9f6f1664a4b51491c17245c018dc5b4dee2fe17038a1d619ee9b0a4b4f48fc74f9adec43d
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

9 lines
No EOL
509 B
Text

import fs from 'fs';
const isWindows = process.platform === 'win32';
// Interesting learning from this, that fs.realpathSync is 70x slower than fs.realpathSync.native:
// https://sun0day.github.io/blog/vite/why-vite4_3-is-faster.html#fs-realpathsync-issue
// https://github.com/nodejs/node/issues/2680
// However, we can't use fs.realpathSync.native on Windows due to behavior differences.
export const realpathSync = isWindows ? fs.realpathSync : fs.realpathSync.native;
//# sourceMappingURL=realpath.js.map