stack/turbo.json
Zai Shi 96c26a7918
Magic link (#13)
* added magic link email, updated email template

* added magic link ui and db schema

* restructured sign in sign up page

* updated example custom button

* added joy tabs

* fixed bugs, added magic link errors, abstracted token creation

* added magic link callback

* fixed token bugs

* added more auth information to user object

* added changeset
2024-04-20 12:33:11 +02:00

44 lines
656 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next",
"dist/**",
"lib/**",
"*.js",
"*.d.ts",
"*.d.ts.map"
],
"outputMode": "new-only"
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"start": {
"cache": false
},
"lint": {
"cache": false
},
"codegen": {
"cache": false
},
"prisma": {
"cache": false
},
"typecheck": {
"cache": false
},
"email": {
"cache": false
}
}
}