8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
export function getFullUrl(path: string): string {
|
|
return "https://example.com" + path;
|
|
}
|
|
|
|
export function basePathRewrite(url: string): string {
|
|
return url;
|
|
}
|