source: client_app/src/custom_axios/axios.js@ 2e507a8

Last change on this file since 2e507a8 was 3f5bf9e, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

added test login

  • Property mode set to 100644
File size: 196 bytes
Line 
1import axios from 'axios';
2
3const instance = axios.create({
4 baseURL: 'http://localhost:9090/api',
5 headers: {
6 'Access-Control-Allow-Origin' : '*'
7 }
8});
9
10export default instance;
Note: See TracBrowser for help on using the repository browser.