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