mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-08-31 13:07:12 -05:00
7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
export function useHttpApi(event: H3Event) {
|
|
const config = useRuntimeConfig(event);
|
|
return $fetch.create({
|
|
baseURL: config.public.apiBase,
|
|
});
|
|
}
|