import ky from 'ky' const apiUrl = import.meta.env.VITE_API_URL || '' export const api = ky.create({ prefixUrl: apiUrl, credentials: 'include', headers: { 'Content-Type': 'application/json', }, })