Thomas Nguyen
Thomas Nguyen's Blog

Thomas Nguyen's Blog

Follow
homeFront-endBack-endMicroservicesBuy me a coffee
Tag

optimization

#optimization

More content

Read more stories on Hashnode


Articles with this tag

Optimizing Web Fonts in Next.js 13

Jan 15, 20233 min read

Web fonts are an essential aspect of modern web design. They allow for beautiful typography on the web, unique to your product ✨ 1. What is FOUT and...

Optimizing Web Fonts in Next.js 13

How to fix ChunkLoadError when loading new ReactJS app version

Jan 12, 20234 min read

Do you or your users get a ChunkLoadError after your deploy updates? If you use code splitting and dynamic imports, old code can cause this issue. 1....

How to fix ChunkLoadError when loading new ReactJS app version

Useful Webpack Optimization Configuration

Aug 29, 20224 min read

1. Improving the Building Speed thread-loader Multithreading can improve the efficiency of a program, we can also use it in Webpack. And thread-loader...

Useful Webpack Optimization Configuration

Monitor and analyze webpack bundle

Jul 24, 20224 min read

Keep track of the bundle size To monitor your app size, use webpack-dashboard during development and bundlesize on...

Monitor and analyze webpack bundle

Batching and automatic batching for renders in React

Jun 17, 20224 min read

1. What is batching? Batching is when React groups multiple state updates into a single re-render for better performance. For example, if you have...

Batching and automatic batching for renders in React

Why are your React Components rendered twice?

Jun 17, 20223 min read

Many developers have implemented a similar functional component and have seen this behavior. Some have even opened a bug report in the official React...

Why are your React Components rendered twice?