-
I use Turborepo with my project, and when I deployed it to vercel, there is an error occurred: the folder structure is:
And I follow these instructions to deploy every app: https://vercel.com/docs/concepts/git/monorepos#turborepo Did other apps deployed success?Yes the other 2 apps use Nextjs for deployment, and the Does the local
|
Beta Was this translation helpful? Give feedback.
Answered by
zhyd1997
Jan 29, 2022
Replies: 0 comments 1 reply
-
Sorry, it's my fault! Fixed in "outputs": [
"dist/**",
+ "build/**",
".next/**"
] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zhyd1997
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, it's my fault!
Fixed in
turbo.json
in root folder!"outputs": [ "dist/**", + "build/**", ".next/**" ]