feat: add ScrollToTop component to reset scroll position on route changes#68
Conversation
✅ Deploy Preview for docuthinker-ai-app canceled.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
There was a problem hiding this comment.
Code Review
This pull request adds a root-level .dockerignore file to exclude node_modules. The review feedback correctly notes that this file is ineffective because the build contexts are configured as subdirectories, and suggests placing .dockerignore files in each subdirectory using **/node_modules instead.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| @@ -0,0 +1 @@ | |||
| node_modules | |||
There was a problem hiding this comment.
The root-level .dockerignore file is currently ineffective because the build contexts in docker-compose.yml are set to subdirectories (e.g., ./backend). Docker only looks for .dockerignore at the root of each build context. To fix this, you should place a .dockerignore file in each subdirectory. Additionally, using **/node_modules is preferred to match nested directories.
**/node_modules
Small cosmetic PR