Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

External Images Arent Responsive In Gatsby With Gatsby Remark Images

Using [TODO: Code shorthand span ] images called from another site weren't responsive for me with :

javascript
resolve: `gatsby-plugin-mdx`,
options: {
    extensions: ['.mdx', '.md'],
    // a workaround to solve mdx-remark plugin compat issue
    // https://github.com/gatsbyjs/gatsby/issues/15486
    plugins: [
        `gatsby-remark-images`,
    ],
    gatsbyRemarkPlugins: [

        {
            resolve: `gatsby-remark-images`,
            options: {
                linkImagesToOriginal: false,
                maxWidth: 800,
                quality: 82,
                loading: "eager",
                disableBgImage: true,
            },
        },
        
        ... etc...

TODO : figure out a solution for this