mirror of
https://github.com/SrIzan10/analytics.srizan.ml.git
synced 2026-05-01 10:35:15 +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}` } : {};
|
|
}
|