+ 4
How to decrease page load time?
I create one website but it's take more time to load so how can I solve it?
2 Respuestas
+ 5
If it contains more images, You have to remove/reduce it it. If it's possible not to use images at all don't use it. But some sites like shopping sites requires images, then you will have to minify the images (using Grunt, Gulp, or NPM image minifier or any other).
Also try minify your CSS and JavaScript files
+ 1
In addition to what Qudusayo posted, you should also try to set up a cache on the both the server-side and the front-end, and try lazy-loading all assets that you don't need inmediatly.
(Lazy-loading refers to not loading some assets until they are needed)
Edit: I known the techniques I pointed out may be somewhat advanced, but you should definitely try them out!