mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-29 01:28:59 -05:00
11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import axios from "axios";
|
|
|
|
const api = () =>
|
|
axios.create({
|
|
baseURL: process.env["NEXT_PUBLIC_APPWRITE_HOST"],
|
|
headers: {
|
|
cookie: `a_session_console=${process.env["APPWRITE_USER_TOKEN"]}`,
|
|
},
|
|
});
|
|
|
|
export default api;
|