mirror of
https://github.com/germondai/trawl.git
synced 2026-08-17 12:11:23 +02:00
feat: add docs URL resolution composable
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export function useDocsUrl() {
|
||||
const url = shallowRef("http://localhost:3001")
|
||||
|
||||
onMounted(() => {
|
||||
const { protocol, hostname } = window.location
|
||||
if (hostname === "localhost" || hostname === "127.0.0.1") url.value = "http://localhost:3001"
|
||||
else url.value = `${protocol}//docs.${hostname}`
|
||||
})
|
||||
|
||||
return url
|
||||
}
|
||||
Reference in New Issue
Block a user