mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01: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}` } : {};
|
|
}
|