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>
13 lines
339 B
Text
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);
|
|
}
|
|
}
|