Will Turbo Cache be used when changes occur? #9171
-
Summarythis is my package.json: After building, if you build again as is, the cache will be applied: But when i change small occurs, they say "cache miss, ...": At first, I thought it was a next cache issue and cached the next cache as well, but as small changes continue to occur, that sentence appears. thanks. Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
👋 A change to a package will result in a cache miss for that package. Caching is done per-package, so changing any file in the Next.js application will cause it to miss Turborepo cache. Separately, Next.js has its own caching in the |
Beta Was this translation helpful? Give feedback.
👋 A change to a package will result in a cache miss for that package. Caching is done per-package, so changing any file in the Next.js application will cause it to miss Turborepo cache.
Separately, Next.js has its own caching in the
.nextdirectory, which likely accounts for the faster subsequent builds to that app.