I'm trying to optimize my site in speed using Google PageSpeed Insights/Lighthouse. My current score is around 37, but I think that is mainly due to the large amount of API requests the page does (Around 30-40). Here's the Google PageSpeed Insights
How do I fix this Avoid Changing critical requests issue?
gatsby-browser.js
// Imports: Dependencies
import 'bootstrap/dist/css/bootstrap.min.css';
Layout.js
// Layout
const Layout = ({ children }) => {
return (
<div className="layout">
<Helmet>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<meta charSet="utf-8" />
<title>COVID-19</title>
<html lang={'en'} />
<link rel="canonical" href="https://orangecountycovid19.com" />
<meta name="description" content={'Orange County, CA COVID-19 Tracker'} />
</Helmet>
<div>{children}</div>
</div>
);
};
// Exports
export default Layout;
