10 lines
263 B
TypeScript
Executable file
10 lines
263 B
TypeScript
Executable file
import axiosParent from "axios";
|
|
import { phonePeBaseUrl } from "@/src/lib/env-exporter"
|
|
|
|
export const phonepeAxios = axiosParent.create({
|
|
baseURL: phonePeBaseUrl,
|
|
timeout: 40000,
|
|
headers: {
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
},
|
|
});
|