how to improve the performance of my react laravel application
Hello my friend , i'm actually working on an application with laravel and react ,i have a probleme when i reload an interface have a table of data (liste of data) the data appear after seven seconds , why ? how can i fasting the appears of data?
@soo You need to actually diagnose the problem before you can fix it. It could be one or more of many different things.
You’ve been given some good pointers by @jlrdw in what to look for. You should use your browser’s developer console to check if it’s the server-side request taking the majority of the time, or if it’s the client side (React code). Once you’ve determined which side is accounting for most of the time, then that will tell you where you need to continue looking into. As for example, there’s no point looking through your React code if it’s your server taking almost seven seconds to return a response.