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>
18 lines
No EOL
705 B
Text
18 lines
No EOL
705 B
Text
export function normalizedAssetPrefix(assetPrefix) {
|
|
// remove all leading slashes and trailing slashes
|
|
const escapedAssetPrefix = assetPrefix?.replace(/^\/+|\/+$/g, '') || false;
|
|
// if an assetPrefix was '/', we return empty string
|
|
// because it could be an unnecessary trailing slash
|
|
if (!escapedAssetPrefix) {
|
|
return '';
|
|
}
|
|
if (URL.canParse(escapedAssetPrefix)) {
|
|
const url = new URL(escapedAssetPrefix).toString();
|
|
return url.endsWith('/') ? url.slice(0, -1) : url;
|
|
}
|
|
// assuming assetPrefix here is a pathname-style,
|
|
// restore the leading slash
|
|
return `/${escapedAssetPrefix}`;
|
|
}
|
|
|
|
//# sourceMappingURL=normalized-asset-prefix.js.map |