diff options
| author | Chitraksh Maheshwari <[email protected]> | 2023-11-26 13:00:30 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-26 14:30:30 +0700 |
| commit | 45cd9de7733dae36639caa41ac97a8efdcfd5439 (patch) | |
| tree | f6e11eef7a22c5abae5703dda25d3d299ea5cb3e | |
| parent | Bump next-auth from 4.22.3 to 4.24.5 (#102) (diff) | |
| download | moopa-45cd9de7733dae36639caa41ac97a8efdcfd5439.tar.xz moopa-45cd9de7733dae36639caa41ac97a8efdcfd5439.zip | |
Update README.md (#104)
* Update README.md
some people get this error when hosting on vercel so yes
* Update README.md
---------
Co-authored-by: Factiven <[email protected]>
| -rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -146,6 +146,10 @@ https://your-website-domain/api/auth/callback/AniListProvider ```bash npx prisma migrate dev npx prisma generate + +### NOTE +# If you get a vercel build error related to prisma that says prisma detected but no initialized just change the following line in package.json line number 8 +"build": "next build" to > "build": "npx prisma migrate deploy && npx prisma generate && next build" ``` 6. Start local server : |