mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
7 lines
291 B
TypeScript
7 lines
291 B
TypeScript
export function getAssetPath(relativePath: string): string {
|
|
const baseURL = import.meta.env.BASE_URL;
|
|
const withoutTrailingSlash = baseURL.replace(/\/+$/, '');
|
|
const withoutLeadingSlash = relativePath.replace(/^\/+/, '');
|
|
|
|
return `${withoutTrailingSlash}/${withoutLeadingSlash}`;
|
|
}
|