How to change the speed of load?

Hi
How i can change the speed of loading site?
Maybe my site have any mistakes in the script?
im using laravel 8
My site is
https://intervision.ua

far as i can tell from here, your server’s slow to hand off the data to the user. vendors.js is also calling 5 different subpages, which amplifies this load time.

Performance testing for websites… Utilize a content delivery network (CDN) Image optimization… Minify JavaScript and CSS files. If at all feasible, lessen the amount of HTTP requests. Use HTTP caching in your browser. Reduce the amount of outside scripts you use.

Using the Lighthouse tool within the developer tools of Google Chrome shows that the web page has 2467 DOM elements, nested up to 20 deep. It also reports other things that are slowing your page load.

No wonder you have so many DOM elements: a quick look at your page source code shows code like this:

</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4">
<div class="container">
<div class="row gutters-10">
</div>
</div>
</div>
<div id="section_featured">
</div>
<div id="section_best_selling">
</div>

<div class="mb-4">
<div class="container">
<div class="row gutters-10">
</div>
</div>
</div>
<div id="section_home_categories">
</div>
<div id="section_best_sellers">
</div>
1 Like

The speed of loading a website is largely determined by the hosting provider and the type of server you are using. You can optimize your website for faster loading times by reducing the size of images, minifying HTML, CSS, and JavaScript files, and using a content delivery network (CDN). Additionally, you can use caching plugins to store static content on the user’s browser so that it doesn’t have to be downloaded every time they visit your website.

I think you should have a consultation by a professional. I use services from Plumrocket, but they seem to work only with Magento. Their Google Page Speed Optimizer Extension helped me a lot. You should find something similar for Laravel.

My experience of frameworks in general is that you have to pay for the simplicity by loading stuff that you never ever will use. This dead meat will slow down your site. By running https://pagespeed.web.dev you may see what causes your problems and get tips how to solve them. There is few - if any - shortcuts to increase the speed.

CDN maybe seems to be a shortcut, but in the long run the site benefits of being clean and tiny.