Rocky_Mountain_Vending/.pnpm-store/v10/files/9b/51d028f371c697d0f079bde3e8fe8c2e3543dbd52ad921b66cbf9fe7204206c385fd458f3c6553bc8153de1ea0d3a95e9ca81406f884d772e65351f99d4ed0
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

23 lines
No EOL
655 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "normalizeDataPath", {
enumerable: true,
get: function() {
return normalizeDataPath;
}
});
const _pathhasprefix = require("../router/utils/path-has-prefix");
function normalizeDataPath(pathname) {
if (!(0, _pathhasprefix.pathHasPrefix)(pathname || '/', '/_next/data')) {
return pathname;
}
pathname = pathname.replace(/\/_next\/data\/[^/]{1,}/, '').replace(/\.json$/, '');
if (pathname === '/index') {
return '/';
}
return pathname;
}
//# sourceMappingURL=normalize-data-path.js.map