We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23ead0a commit 1d9f1e7Copy full SHA for 1d9f1e7
2 files changed
packages/auth/.env.example
@@ -6,4 +6,6 @@ DATABASE_URL=""
6
# GITHUB_CLIENT_ID="" # (optional)
7
# GITHUB_CLIENT_SECRET="" # (optional)
8
# GITLAB_CLIENT_ID="" # (optional)
9
-# GITLAB_CLIENT_SECRET="" # (optional)
+# GITLAB_CLIENT_SECRET="" # (optional)
10
+RESEND_FROM=""
11
+RESEND_TOKEN=""
packages/auth/tsconfig.json
@@ -1,7 +1,11 @@
1
{
2
"extends": "@repo/typescript-config/nextjs.json",
3
"compilerOptions": {
4
- "baseUrl": "."
+ "baseUrl": ".",
5
+ "paths": {
+ "@/*": ["./*"],
+ "@repo/*": ["../../packages/*"]
+ }
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
0 commit comments