mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-11 10:27:01 +02:00
12 lines
240 B
TypeScript
12 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;
|