Skip to content
Snippets Groups Projects
Select Git revision
  • 38c8f8554ab883cd3f6ea8462bb574d0e93872a2
  • master default protected
  • submit-to-mongodb
  • more-small-submit-g-changes
  • small_FE_modsMichael
  • dev2
6 results

Api.js

Blame
  • Api.js 178 B
    import axios from "axios";
    
    export default () => {
      return axios.create({
        //baseURL: this.$store.state.settings.instance.mongo
        baseURL: "http://localhost:8081"
      });
    };