diff --git a/docs/pages/docs/faq.mdx b/docs/pages/docs/faq.mdx index c5df101a437b9..6512ad46b64d2 100644 --- a/docs/pages/docs/faq.mdx +++ b/docs/pages/docs/faq.mdx @@ -27,6 +27,10 @@ Yes. As long as the [Remote Cache](./features/remote-caching) provider you choos Due to the nature of Turborepo's functionality, no personal information is gathered when the open source binary is run locally. All cached artifacts are stored on your machine by default. Further, no log in information or contact details are collected by the `turbo` CLI, so Turborepo will never have access to any personally identifiable information. Thus, for any data privacy questions and concerns please refer to [Turborepo's Privacy Policy](https://turborepo.org/privacy). -### Does Turborepo collect any personally identifiable information when using Remote Caching? +## Does Turborepo collect any personally identifiable information when using Remote Caching? When [Remote Caching](./features/remote-caching) is enabled, by default Turbo will utilize your Vercel account to cache artifacts in the cloud. Thus, for any data privacy questions and concerns, please refer to [Turborepo's Privacy Policy](https://turborepo.org/privacy) and [Vercel's Privacy Policy](https://vercel.com/legal/privacy-policy). If you use a different Remote Cache provider, please refer to the provider's privacy policy. + +## How can I retain Fast Refresh in my Turborepo when using multiple Next.js applications? + +[Fast Refresh](https://nextjs.org/docs/basic-features/fast-refresh) gives you instantaneous feedback on edits made to your React components in Next.js applications. If your Turborepo has multiple Next.js applications, you can use `next-transpile-modules` to ensure that imports across packages will work with Fast Refresh when changes are made. Turborepo will effectively watch for any edits and the rebuild when saving. You can get started from [this example](https://github.com/vercel/turborepo/tree/main/examples/basic) which is set up to handle Fast Refresh.