leaf-document-web/src/plugins/config.ts

16 lines
322 B
TypeScript
Raw Normal View History

2024-05-25 16:21:15 +00:00
const staticConfig = {
2024-05-25 15:12:01 +00:00
url: "https://auth.leaflow.cn/",
realm: "UserLand",
clientId: "Leaf Library",
scope: "openid profile",
checkLoginIframe: false,
redirectUri: window.location.origin + "/auth/login",
2024-05-30 03:05:16 +00:00
rpcBaseUrl: "http://127.0.0.1:18081",
devMode: true
2024-05-25 15:12:01 +00:00
}
export default staticConfig