5 lines
149 B
TypeScript
5 lines
149 B
TypeScript
import { environment } from "../environments/environment";
|
|
|
|
export function getPhxUrl(path: string) {
|
|
return `${environment.serverUrl}${path}`;
|
|
} |