upload files

This commit is contained in:
sbinsalman
2025-11-25 11:11:42 -07:00
commit 36f9a5e69b
41 changed files with 1971 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import Axios from "axios"
const { VITE_BACKEND_URL } = import.meta.env
const Http = Axios.create({
baseURL: VITE_BACKEND_URL,
timeout: 10000,
headers: {
"Content-Type": "application/json"
}
})
export default Http