/
dedaMazai
/
aboutMe
Обзор
Документация
Войти
/
dedaMazai
/
aboutMe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/api/api.ts
14 строк
360 B
Andrey Chipizubov
fix
05 сен 2023, 09:22
05 сен 2023, 09:22
8214691
Код
Авторство
О чём код?
import axios from 'axios'; import { USER_LOCALSTORAGE_KEY } from '@/shared/const/localstorage'; export const $api = axios.create({ baseURL: __API__, }); $api.interceptors.request.use((config) => { if (config.headers) { config.headers.Authorization = localStorage.getItem(USER_LOCALSTORAGE_KEY) || ''; } return config; });