/
skitchen
/
Portal
Обзор
Документация
Войти
/
skitchen
/
Portal
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/api/api.ts
16 строк
375 B
nikita
Removed unnecessary debug statement from Button component test
26 окт 2023, 18:06
26 окт 2023, 18:06
1bbbec2
Код
Авторство
О чём код?
import axios from 'axios'; import { USER_LOCAL_STORAGE_KEY } from 'shared/consts/localStorage'; export const API = axios.create({ baseURL: __API__, }); API?.interceptors.request.use((config) => { const token = localStorage.getItem(USER_LOCAL_STORAGE_KEY) || ''; if (config.headers) { config.headers.Authorization = token; } return config; });