mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
8 lines
216 B
JavaScript
8 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}` } : {};
|
|
}
|