Introducing the Gatsby Concierge Tech Lead Program
August 18, 2022Introducing the Gatsby Concierge Tech Lead Program Over the past few years, the customer success team here at Gatsby ha…
Tags:
How to do a front end performance audit and some resources.
Gatsby-config.js:
{
resolve: `gatsby-plugin-webpack-bundle-analyser-v2`,
options: {
generateStatsFile: true,
statsOptions: {
reasons: true
}
}
},
Gatsby and Bundle Chunking
Third party scripts are always going to be a nightmare.
But, to ignore them, you can filter by domain in Chrome Dev Tools: domain:example.com
This will show you all network requests originating from that domain.
Or you can do a negative filter, like -domain:yogainternational.com
This will show you all network requests not originating from that domain.
Introducing the Gatsby Concierge Tech Lead Program Over the past few years, the customer success team here at Gatsby ha…