fix: add missing vendor/pages.css causing 500 on all routes#460
Open
dnplkndll wants to merge 1 commit intoChurchApps:mainfrom
Open
fix: add missing vendor/pages.css causing 500 on all routes#460dnplkndll wants to merge 1 commit intoChurchApps:mainfrom
dnplkndll wants to merge 1 commit intoChurchApps:mainfrom
Conversation
Commit 0fa20e0 ("Copy apphelper assets locally") changed the import in layout.tsx from @churchapps/apphelper-website/dist/styles/pages.css to @/styles/vendor/pages.css, but never created the file. It also added /src/styles/vendor to .gitignore, preventing the file from being tracked. This copies pages.css from @churchapps/apphelper-website@0.6.19 into src/styles/vendor/ and removes the gitignore entry so the file is committed. Without this fix, every route returns a 500 error because Next.js cannot resolve the CSS import at build/dev startup.
|
@dnplkndll is attempting to deploy a commit to the Live Church Solutions Team on Vercel. A member of the Team first needs to authorize it. |
dnplkndll
added a commit
to dnplkndll/B1Stack
that referenced
this pull request
Mar 15, 2026
The B1App CSS import issue (missing src/styles/vendor/pages.css) is now fixed on dnplkndll/B1App#fix/missing-vendor-css (upstream PR: ChurchApps/B1App#460). - Add fix/missing-vendor-css to B1App merges in repos.yaml - Restore B1App in wait-ready (was excluded with WAIT_SERVICES filter) - Remove skip comments for B1App E2E tests - Increase WAIT_TIMEOUT to 300s (B1App Next.js cold-compile needs time) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Commit 0fa20e0 ("Copy apphelper assets locally") changed the import in
src/app/layout.tsxfrom:to:
But the file
src/styles/vendor/pages.csswas never created. Additionally,/src/styles/vendorwas added to.gitignore, preventing the file from being tracked.This causes every route to return a 500 error because Next.js cannot resolve the CSS import at build/dev startup.
Fix
pages.cssfrom@churchapps/apphelper-website@0.6.19(dist/styles/pages.css, 13.4kB) intosrc/styles/vendor/pages.css/src/styles/vendorentry from.gitignoreso the file is committedTesting
@/styles/vendor/pages.css) resolve without changes