diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 1b9c708554..83c02e7992 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -39,6 +39,10 @@ Apps: - App on [http://localhost:3001](http://localhost:3001) - UI Docs on [http://localhost:6006](http://localhost:6006) +#### Turbo in local development + +Remote caching is enabled but `TURBO_REMOTE_CACHE_SIGNATURE_KEY` environemnt variable needs to be set. Contact any contributor to get access to signature key to enable remote caching for your development environment. + ## Configure env variables `.env.local` example: diff --git a/web/apps/doprocess/app/layout.tsx b/web/apps/doprocess/app/layout.tsx index feef8df55c..ffdec84153 100644 --- a/web/apps/doprocess/app/layout.tsx +++ b/web/apps/doprocess/app/layout.tsx @@ -1,3 +1,4 @@ +import Script from 'next/script'; import { Inter } from 'next/font/google'; import { Metadata, Viewport } from 'next'; import './global.css'; @@ -20,6 +21,7 @@ export default function RootLayout({ children, }: { {children} +