In my Vue project, I am using a single file component with a chart module. In order to customize the styles of the chart module's CSS, I created a custom CSS file in the assets folder where I added lines to override certain styles (such as changing the background color from white to dark). Everything works perfectly when running npm run dev locally on localhost.
However, I also have an S3 bucket and use Gitlab CI to update my site with tagged builds. Strangely, after the updates, the customized styles don't seem to be taking effect. I checked the S3 bucket and confirmed that the new lines are present in the generated CSS, but they are not appearing on the site. Any suggestions would be greatly appreciated!