8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
export function subscribe(endpoint: string) {
|
|
const config = useRuntimeConfig();
|
|
const evtSource = new EventSource(config.public.endpoint + endpoint, {
|
|
withCredentials: true,
|
|
});
|
|
|
|
return evtSource;
|
|
} |