17 lines
397 B
TypeScript
17 lines
397 B
TypeScript
/**
|
|
* Convex Auth 配置文件
|
|
*
|
|
* 说明:
|
|
* - 该文件由 @convex-dev/auth 约定读取,用于声明 “Convex” 这一内置 provider 的基本信息。
|
|
* - domain 必须与站点对外访问的 Origin 一致(本地默认 http://127.0.0.1:3000)。
|
|
*/
|
|
export default {
|
|
providers: [
|
|
{
|
|
domain: process.env.CONVEX_SITE_URL,
|
|
applicationID: "convex",
|
|
},
|
|
],
|
|
};
|
|
|