skip to Main Content

Laravel – Bootstrap responsive doesn't work and not recognized in devtools

I'm working on a project with Laravel Mix, Vue.js and Bootstrap 5.3 About laravel mix: const mix = require("laravel-mix"); const path = require('path'); require("mix-env-file"); require("laravel-mix-workbox"); mix.js('resources/js/app.js', 'public/js') .version() .vue() .sass('resources/sass/app.scss', 'public/css') .sourceMaps() About app.scss @import "~bootstrap/dist/css/bootstrap"; ... custom things Vue.js…

VIEW QUESTION

Laravel and Vue have performance error with LCP

I have a project with Laravel v6 (mix) and vueJs v2 It has LCP error My website LCP is a hero image that I used it like this <picture> <source media="(min-width: 1536px)" :srcset="getAssetPath('/v2/assets/images/home-new.webp')" type="image/webp"> <source media="(min-width: 1280px)" :srcset="getAssetPath('/v2/assets/images/home-bg-1535.webp')" type="image/webp"> <source…

VIEW QUESTION
Back To Top
Search