mirror of
https://github.com/plausible/analytics.git
synced 2024-12-01 11:56:19 +03:00
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
export function apiPath(site, path = '') {
|
|
return `/api/stats/${encodeURIComponent(site.domain)}${path}`
|
|
}
|
|
|
|
export function sitePath(site, path = '') {
|
|
return `/${encodeURIComponent(site.domain)}${path}`
|
|
}
|