Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
student_panel
/
src
/
components
/
lib
:
api.ts
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
// src/lib/api.ts import axios from "axios"; const api = axios.create({ baseURL: process.env.NEXT_PUBLIC_API_URL, // e.g., "https://api.yourdomain.com" withCredentials: true, // if using cookies/sessions headers: { "Content-Type": "application/json", Accept: "application/json", }, }); export default api;