@stokr/components-library 2.3.58-beta.7 → 2.3.58-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/model/axios.js +3 -2
- package/dist/model/axiosPublic.js +3 -2
- package/package.json +1 -1
package/dist/model/axios.js
CHANGED
|
@@ -9,9 +9,10 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
9
9
|
/* Libraries */
|
|
10
10
|
|
|
11
11
|
const BASE_URL = process.env.REACT_APP_API_URL;
|
|
12
|
-
|
|
12
|
+
const axiosInstance = _axios.default === null || _axios.default === void 0 ? void 0 : _axios.default.create({
|
|
13
13
|
headers: {
|
|
14
14
|
'Content-Type': 'application/json'
|
|
15
15
|
},
|
|
16
16
|
baseURL: BASE_URL
|
|
17
|
-
});
|
|
17
|
+
});
|
|
18
|
+
var _default = exports.default = axiosInstance;
|
|
@@ -9,9 +9,10 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
9
9
|
/* Libraries */
|
|
10
10
|
|
|
11
11
|
const BASE_URL = process.env.REACT_APP_BASE_URL_PUBLIC;
|
|
12
|
-
|
|
12
|
+
const axiosInstance = _axios.default === null || _axios.default === void 0 ? void 0 : _axios.default.create({
|
|
13
13
|
headers: {
|
|
14
14
|
'Content-Type': 'application/json'
|
|
15
15
|
},
|
|
16
16
|
baseURL: BASE_URL
|
|
17
|
-
});
|
|
17
|
+
});
|
|
18
|
+
var _default = exports.default = axiosInstance;
|