Rocky_Mountain_Vending/.pnpm-store/v10/files/c5/e744948106a8dee02f5d3eba2a8278989b65dcba63ec49cec68ee345126a0fd13a628ea3c7be14b4fd28ff8f04279f60338bd4cb293271ecc6da7b054e021a
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

13 lines
339 B
Text

'use strict'
const fs = require('fs');
const path = require('path');
module.exports = function(filename) {
if (!fs.existsSync(path.join(__dirname, filename))) {
console.log(
'Oops! Looks like the chrome-launcher files needs to be compiled. Please run:');
console.log(' yarn; yarn build;');
process.exit(1);
}
}