Locally the front end works great with bootstrap css and my custom css file loading great. Once deployed with Vercel it seems like some parts of the css dont load. I’ve gone through my project with multiple AIs, renamed/moved files and the issue presists. Any ideas?
Deployment URL or Custom Domain: https://hellenic-defence-net.vercel.app/
Environment (local, preview, production): production and preview
Project Framework: Nuxt.js
Build Settings:
Framework Preset:
Build Command (if not default):
Output Directory (if not default):
Install Command (if not default):
Node/Runtime Version:
Package Manager:
Relevant Packages:
Hello and thanks for your interest!
I have indeed found a macgyver-esque solution. The problem was that Nuxt loaded my custom CSS that overrides parts of Bootstrap before it loaded Bootstrap it self from the head. My solution was to just copy & paste the whole bootstrap css into a local file and add my 400ish lines at the end. Of course it works but it wastes bandwith and space. A more elegant solution would be greatly appreciated of course.