Skip to content

Commit

Permalink
bug fix3
Browse files Browse the repository at this point in the history
  • Loading branch information
doyupK committed Jul 3, 2024
1 parent 81951f2 commit 618bcda
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build", "sitemap"],
"outputs": ["dist/**", ".next/**"]
"dependsOn": [
"^build",
"sitemap"
],
"outputs": [
"dist/**",
".next/**"
]
},
"sitemap": {
"outputs": []
Expand All @@ -16,17 +22,19 @@
}
},
"globalDependencies": [
".env.production",
"$NEXT_PUBLIC_URL",
"$NEXT_PUBLIC_SERVER_URL",
"$NEXT_PUBLIC_API_MOCKING",
"$NEXT_PUBLIC_AUTH_SECRET",
"$NEXT_PUBLIC_GOOGLE_ID",
"$NEXT_PUBLIC_GOOGLE_SECRET",
"$NEXT_PUBLIC_KAKAO_ID",
"$NEXT_PUBLIC_KAKAO_SECRET",
"$NEXT_PUBLIC_OPENVIDU_SECRET",
"$NEXT_PUBLIC_OPENVIDU_API_URL",
"$NEXT_PUBLIC_GOOGLE_ANALYTICS"
".env.production"
],
"globalEnv": [
"NEXT_PUBLIC_URL",
"NEXT_PUBLIC_SERVER_URL",
"NEXT_PUBLIC_API_MOCKING",
"NEXT_PUBLIC_AUTH_SECRET",
"NEXT_PUBLIC_GOOGLE_ID",
"NEXT_PUBLIC_GOOGLE_SECRET",
"NEXT_PUBLIC_KAKAO_ID",
"NEXT_PUBLIC_KAKAO_SECRET",
"NEXT_PUBLIC_OPENVIDU_SECRET",
"NEXT_PUBLIC_OPENVIDU_API_URL",
"NEXT_PUBLIC_GOOGLE_ANALYTICS"
]
}
}

0 comments on commit 618bcda

Please sign in to comment.