mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-21 13:34:24 +00:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
// client.js
|
|
|
|
var axios = require('axios');
|
|
|
|
var axiosInstance = axios.create({
|
|
baseURL: 'http://localhost:8000',
|
|
/* other custom settings */
|
|
});
|
|
|
|
module.exports = axiosInstance; |