mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
|
|
import { getItem } from 'next-basics';
|
||
|
|
import { AUTH_TOKEN } from './constants';
|
||
|
|
|
||
|
|
export function getAuthHeader() {
|
||
|
|
const token = getItem(AUTH_TOKEN);
|
||
|
|
|
||
|
|
return token ? { authorization: `Bearer ${token}` } : {};
|
||
|
|
}
|