Files
pasargad/src/lib/axios.ts
T
ahasani 730e2d8ca8 feat: add certificate gallery and certifications section components
- Implemented CertificateGallery component to display certification images in a gallery format.
- Created CertificationsSection component to showcase certifications with titles and descriptions.
- Enhanced Gallery component to support animations and keyboard navigation.
- Introduced Select component for dropdown selection with images.
- Added utility functions for API responses and pagination handling.
- Implemented localization functions for text and content.
- Created a custom hook for detecting clicks outside of a component.
2026-07-19 07:59:16 +03:30

19 lines
393 B
TypeScript

import axios from 'axios';
const api = axios.create({
baseURL: process.env.NEXT_PUBLIC_API_BASE_URL || 'http://localhost:4000/api',
headers: {
'Content-Type': 'application/json',
},
withCredentials: true, // Enable sending cookies with requests
});
api.interceptors.request.use(
(config) => {
return config;
},
(error) => Promise.reject(error),
);
export default api;