chore: initial commit

This commit is contained in:
Divlo
2021-10-24 05:19:39 +02:00
commit 21123c4477
145 changed files with 48821 additions and 0 deletions

10
utils/api.ts Normal file
View File

@ -0,0 +1,10 @@
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'
}
})