Skip to content
Snippets Groups Projects
Select Git revision
  • eb0aaacc58e8f8415d6790cd42be74a06b7dd14d
  • master default protected
  • 69-resize-image-before-upload
  • 60-add-match-salamander-modal-to-edit-salamander
  • 50-fix-server-error-message
  • 48-fix-gradle
  • 31-camera-communicate-with-api-and-delete-from-cache-2
  • 20-changing-verification-step-in-profile-to-modal
  • 4-add-all-basic-views
  • 1-setup
10 results

APIkit.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    APIkit.js 247 B
    import axios from "axios";
    
    // Create axios client, pre-configured with baseURL
    let APIKit = axios.create({
      baseURL: "http://192.168.0.30:5000",
      timeout: 60000,
      headers: { "Content-Type": "multipart/form-data" },
    });
    
    export default APIKit;