Files
openpanel/packages/devtools-ui/src/utils/ory.ts
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

11 lines
236 B
TypeScript

import { FrontendApi } from "@ory/client";
import { AUTH_SERVER_URL } from "./constants";
export const ory = new FrontendApi({
isJsonMime: () => true,
basePath: AUTH_SERVER_URL,
baseOptions: {
withCredentials: true,
},
});