Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/2ab6630d2d23aadf578ef2148ffd2180fb9f44d2625b374c631ae6a4c9655524d57a5eaa49c61a1b47cd0712fc802380083d0ec763c2392a3d966bbd15fee2
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

36 lines
No EOL
881 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
isInternalComponent: null,
isNonRoutePagesPage: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
isInternalComponent: function() {
return isInternalComponent;
},
isNonRoutePagesPage: function() {
return isNonRoutePagesPage;
}
});
function isInternalComponent(pathname) {
switch(pathname){
case 'next/dist/pages/_app':
case 'next/dist/pages/_document':
return true;
default:
return false;
}
}
function isNonRoutePagesPage(pathname) {
return pathname === '/_app' || pathname === '/_document';
}
//# sourceMappingURL=is-internal-component.js.map