This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/utils/api.ts
2021-10-24 05:19:39 +02:00

11 lines
206 B
TypeScript

import axios from 'axios'
export const API_URL = process.env.NEXT_PUBLIC_API_URL as string
export const api = axios.create({
baseURL: API_URL,
headers: {
'Content-Type': 'application/json'
}
})