UNPKG
@attributech/nuxt-drupal-utils
Version:
latest (0.2.3)
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
Shared utilities for Nuxt 3 projects with Drupal backend
@attributech/nuxt-drupal-utils
/
dist
/
runtime
/
utils
/
getApiUrl.js
6 lines
(5 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ getServerUrl }
from
"./getServerUrl.js"
;
export
const
getApiUrl =
function
(
defaultServerUrl
) {
const
serverUrl =
getServerUrl
(defaultServerUrl);
return
`
${serverUrl}
/api`
; };