summaryrefslogtreecommitdiffhomepage
path: root/src/lib/api.ts
blob: 649c683fb974952e80d220f6a7790908770092a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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',
  },
})