Fix CI Build Timeout by Using Local Geist Fonts#24
Conversation
Switched from `next/font/google` to the `geist` NPM package in the `dcfs-gh-pages` frontend. This avoids external network requests to Google Fonts during the build process, which was causing timeouts in the ARM64 Docker build environment. - Added `geist` to `dcfs-gh-pages/package.json` - Updated `dcfs-gh-pages/app/layout.tsx` to use local fonts - Verified build and lint pass locally Co-authored-by: VulcanoSoftware <113239901+VulcanoSoftware@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
I have resolved the GitHub Action failure by switching the frontend font management from
next/font/googleto the standalonegeistpackage.The logs showed that the ARM64 Docker build was failing during
npm run buildbecause it timed out while attempting to fetchGeist Monofrom Google Fonts. By installing thegeistpackage and using it locally, we eliminate this network dependency during the build process.I have verified the fix by:
npm run buildandnpm run lintsuccessfully in thedcfs-gh-pagesdirectory.next_dev.log) are included in the submission.PR created automatically by Jules for task 3475021281854471409 started by @VulcanoSoftware