UNPKG
pesapal-hono
Version:
latest (1.0.7)
1.0.7
1.0.5
1.0.3
1.0.1
1.0.0
A lightweight Pesapal payment gateway integration using Hono.js
pesapal-hono
/
dist
/
utils
/
axios.js
11 lines
(10 loc)
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// src/utils/axios.ts
import
axios
from
'axios'
;
export
function
createAxiosInstance
(
config
) {
return
axios.
create
({
baseURL
: config.
apiBaseUrl
,
headers
: {
'Content-Type'
:
'application/json'
, }, }); }