Closed maanasb01 closed 3 months ago
Name | Link |
---|---|
Latest commit | f3ae28baa73c42a5a3b6d665aa3d1ed7e90aa30b |
Latest deploy log | https://app.netlify.com/sites/tattle-website-preview/deploys/66c8ec1a3332ac000847a9aa |
Deploy Preview | https://deploy-preview-197--tattle-website-preview.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Fix: Resolve blog flickering issue and other minor improvements
Table of Contents
GatsbyImage
components withStaticImage
components wherever possibleShow all tags
bugDEV_SSR
flag to config fileexternal link icon
size issue in mobile screens, which was used in theLatestEntries
componentReplaced
GatsbyImage
components withStaticImage
components wherever possibleGatsbyImage
components withStaticImage
components throughout the project.gatsby-plugin-image
, theStaticImage
component also does all the pre-processing and we can pass the image URLs directly.Resolved the Flickering issue in the blog index page and new breakpoint for tablets
ResponsiveContext
to find out the number of required columns, I created a custom event listener to do that.window.innerWidth
. It worked fine during the development but the compilation failed during build time because, during the SSR, the window object cannot be accessed.Fixed the
Show all tags
bugAdded the
DEV_SSR
flag to config fileDEV_SSR
flag in the config file to catch any server-side rendering error. This would help us to know beforehand during development if there would be any error during the build time.Tried resolving all the warnings and errors in the browser's console
defaultProps
, which is going to be deprecated in the next version. I changed it in theSEO
component andMasonryLayout
component.Minor: Fixed the
external link icon
size issue in mobile screens, used in theLatestEntries
component