/
istok
/
idp_server
Обзор
Документация
Войти
/
istok
/
idp_server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
dev
apps/client/src/api/index.ts
16 строк
368 B
ArtemAstakhov
Move client to nextjs
22 ноя 2025, 22:42
22 ноя 2025, 22:42
35e7508
Код
Авторство
О чём код?
import { client } from "./client/client.gen"; client.setConfig({ baseUrl: process.env.NEXT_PUBLIC_SERVER_URL, redirect: "manual", }); client.interceptors.response.use((response) => { console.log(response); if (response.status === 302) { window.location.href = response.headers.get("Location") ?? ""; } return response; }); export * from "./client";