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
Divlo a0fa66e8f5
feat: design applications and first api calls
Co-authored-by: Walid <87608619+WalidKorchi@users.noreply.github.com>
2021-10-24 06:09:43 +02:00

14 lines
261 B
TypeScript

import axios from 'axios'
export const API_VERSION = '1.0.0'
export const API_URL =
process.env.NEXT_PUBLIC_API_URL ?? 'http://localhost:8080'
export const api = axios.create({
baseURL: API_URL,
headers: {
'Content-Type': 'application/json'
}
})