/
dedaMazai
/
TestServer
Обзор
Документация
Войти
/
dedaMazai
/
TestServer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/api/api.ts
14 строк
360 B
Andrey Chipizubov
fix
23 апр 2023, 17:32
23 апр 2023, 17:32
cc424e9
Код
Авторство
О чём код?
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; });