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>
15 lines
315 B
Text
15 lines
315 B
Text
var debug;
|
|
|
|
module.exports = function () {
|
|
if (!debug) {
|
|
try {
|
|
/* eslint global-require: off */
|
|
debug = require("debug")("follow-redirects");
|
|
}
|
|
catch (error) { /* */ }
|
|
if (typeof debug !== "function") {
|
|
debug = function () { /* */ };
|
|
}
|
|
}
|
|
debug.apply(null, arguments);
|
|
};
|