Netlify Deploy Failed

I have below code that fails Netlify Deploy for a Gatsbyjs website, what could be the issue:

/* eslint-disable react/no-danger */

import React from 'react';

import { useStaticQuery, graphql, Link } from 'gatsby';

import Img from 'gatsby-image';

import '../templates/styles/articleStyles.css';

const RecomendedPosts = () => {

  const maxNumber = 120; 

  const arrayNumber = [];  

  for (let i=0; i<11;i++){ 

  const randomNumber = Math.floor((Math.random() * maxNumber) + 1);       

  if(arrayNumber.indexOf(randomNumber)===-1){

    arrayNumber.push ( randomNumber )

  }

  }

console.log(arrayNumber)

  const tempOne = arrayNumber[1]

  const temptwo = arrayNumber[2]

  const tempthree = arrayNumber[3]

  const tempfour = arrayNumber[4]

  const tempfive = arrayNumber[5]

  const tempsix = arrayNumber[6]

  const tempseven = arrayNumber[7]

  const tempeight = arrayNumber[8]

  const tempnine = arrayNumber[9]

    

    const data = useStaticQuery(graphql`

    query {

        allWordpressPost(filter: {categories: {elemMatch: {slug: {eq: "all-blogs"}}}}, sort: { fields: [date], order: DESC }) {

          edges {

            node {

              title

              excerpt

              slug

              categories {

                id

                name

                slug

              }

              featured_media {

                source_url

                localFile {

                  relativePath 

                  childImageSharp {

                    resolutions(width: 350, height: 200) {

                      ...GatsbyImageSharpResolutions_withWebp

                      src

                      width

                      height

                    }

                  }

                }

             }

            }

          }

        }

      }

    `);

  

    return (

            

       <div className="container">

        

          <div className="row" style={{ paddingBottom: '40px' }}>

          

    <div class="post-module-2">

      <div class="thumbnail-2">

            <div className="col-sm-4 pl-sm-1"  >

            {data.allWordpressPost.edges[tempOne].node.featured_media ? (

      <div>

            <Link to={`/${data.allWordpressPost.edges[tempOne].node.slug}/`} style={{ paddingTop: '50px' }} >

            <Img resolutions={data.allWordpressPost.edges[tempOne].node.featured_media.localFile.childImageSharp.resolutions} style={{ paddingRight: '40px' }}/>  

            </Link>

      </div>

    ) : null}                   

              <Link to={`/${data.allWordpressPost.edges[tempOne].node.slug}/`} >

              <b class="title-2">{data.allWordpressPost.edges[tempOne].node.title}</b>

              </Link>

              </div>

            </div> 

           

            </div>

            

            <div class="post-module-2">

      <div class="thumbnail-2"> 

            <div className="col-sm-4 pl-sm-2" >

            {data.allWordpressPost.edges[temptwo].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[temptwo].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[temptwo].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>         

              </div>

            ) : null}     

                              

             <Link to={`/${data.allWordpressPost.edges[temptwo].node.slug}/`}>

              <b class="title-2">{data.allWordpressPost.edges[temptwo].node.title}</b>

              </Link>

            </div>

            </div> 

         

            </div>

            <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pr-sm-2" >

            

            {data.allWordpressPost.edges[tempthree].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempthree].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[tempthree].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}    

              <Link to={`/${data.allWordpressPost.edges[tempthree].node.slug}/`}>

              <b class="title-2">{data.allWordpressPost.edges[tempthree].node.title}</b>

              </Link>

            </div>

          </div>

         

          </div> 

            </div>

            

          <div className="row">

          <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pl-sm-1"  >

            

            {data.allWordpressPost.edges[tempfour].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempfour].node.slug}/`}  >

            <Img resolutions={data.allWordpressPost.edges[tempfour].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}      

            <Link to={`/${data.allWordpressPost.edges[tempfour].node.slug}/`}  >

              <b class="title-2">{data.allWordpressPost.edges[tempfour].node.title}</b>

              </Link>

              </div>

              </div> 

              

            </div>

            <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pl-sm-2" >

          

            {data.allWordpressPost.edges[tempfive].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempfive].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[tempfive].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}    

              <Link to={`/${data.allWordpressPost.edges[tempfive].node.slug}/`}>

              <b class="title-2">{data.allWordpressPost.edges[tempfive].node.title}</b>

              </Link>

            </div>

            </div> 

            

            </div>

            <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pr-sm-2" >

            {data.allWordpressPost.edges[tempsix].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempsix].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[tempsix].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}             

           

              <Link to={`/${data.allWordpressPost.edges[tempsix].node.slug}/`}>

              <b class="title-2">{data.allWordpressPost.edges[tempsix].node.title}</b>

              </Link>

            </div>

            </div> 

            

            </div>

          </div>

          <div className="row">

          <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pl-sm-1"  >

            {data.allWordpressPost.edges[tempseven].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempseven].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[tempseven].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}             

            <Link to={`/${data.allWordpressPost.edges[tempseven].node.slug}/`}  >

              <b class="title-2">{data.allWordpressPost.edges[tempseven].node.title}</b>

              </Link>

              </div>

              </div> 

            

            </div>

            <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pl-sm-2" >

            {data.allWordpressPost.edges[tempeight].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempeight].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[tempeight].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}  

            <Link to={`/${data.allWordpressPost.edges[tempeight].node.slug}/`}>

              <b class="title-2">{data.allWordpressPost.edges[tempeight].node.title}</b>

              </Link>

            </div>

            </div> 

          

            </div>

            <div class="post-module-2">

        <div class="thumbnail-2"> 

            <div className="col-sm-4 pr-sm-2" >

            {data.allWordpressPost.edges[tempnine].node.featured_media ? (

             <div>

            <Link to={`/${data.allWordpressPost.edges[tempnine].node.slug}/`}>

            <Img resolutions={data.allWordpressPost.edges[tempnine].node.featured_media.localFile.childImageSharp.resolutions} />  

            </Link>

            </div>

            ) : null}      

              <Link to={`/${data.allWordpressPost.edges[tempnine].node.slug}/`}>

              <b class="title-2">{data.allWordpressPost.edges[tempnine].node.title}</b>

              </Link>

            </div>

            </div> 

           

            </div>

          </div>

      

        </div>

      );

  };

  

  export default RecomendedPosts;
Error logs
4:16:46 PM: Build ready to start
4:16:48 PM: build-image version: 9cade8af58c2cf3a17a1e9433d2e979149488837
4:16:48 PM: build-image tag: v3.3.5
4:16:48 PM: buildbot version: 2fd8f04962d5dbc77b79b9c2f5ab7a077e87376b
4:16:48 PM: Fetching cached dependencies
4:16:48 PM: Starting to download cache of 166.4MB
4:16:53 PM: Finished downloading cache in 4.791936689s
4:16:53 PM: Starting to extract cache
4:16:59 PM: Finished extracting cache in 6.681224512s
4:16:59 PM: Finished fetching cache in 11.56915779s
4:16:59 PM: Starting to prepare the repo for build
4:17:00 PM: Preparing Git Reference refs/heads/master
4:17:01 PM: Starting build script
4:17:01 PM: Installing dependencies
4:17:01 PM: Started restoring cached node version
4:17:03 PM: Finished restoring cached node version
4:17:04 PM: v10.19.0 is already installed.
4:17:05 PM: Now using node v10.19.0 (npm v6.13.4)
4:17:05 PM: Attempting ruby version 2.6.2, read from environment
4:17:07 PM: Using ruby version 2.6.2
4:17:07 PM: Using PHP version 5.6
4:17:07 PM: Started restoring cached node modules
4:17:07 PM: Finished restoring cached node modules
4:17:07 PM: Installing NPM modules using NPM version 6.13.4
4:17:23 PM: npm
4:17:23 PM:  WARN bootstrap@4.4.1 requires a peer of jquery@1.9.1 - 3 but none is installed. You must install peer dependencies yourself.
4:17:23 PM: npm
4:17:23 PM:  WARN bootstrap@4.4.1 requires a peer of popper.js@^1.16.0 but none is installed. You must install peer dependencies yourself.
4:17:23 PM: npm WARN gatsby-plugin-less@3.0.17 requires a peer of less@^3.0.0 but none is installed. You must install peer dependencies yourself.
4:17:23 PM: npm WARN
4:17:23 PM:  less-loader@5.0.0 requires a peer of less@^2.3.1 || ^3.0.0 but none is installed. You must install peer dependencies yourself.
4:17:23 PM: npm WARN react-custom-share@0.4.8 requires a peer of emotion@^9.2.4 but none is installed. You must install peer dependencies yourself.
4:17:23 PM: npm WARN tsutils@3.17.1 requires a peer of typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta but none is installed. You must install peer dependencies yourself.
4:17:23 PM: npm
4:17:23 PM:  WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.1.2 (node_modules/chokidar/node_modules/fsevents):
4:17:23 PM: npm
4:17:23 PM:  WARN
4:17:23 PM:  notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
4:17:23 PM: npm WARN
4:17:23 PM: optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.11 (node_modules/fsevents):
4:17:23 PM: npm WARN notsup
4:17:23 PM:  SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.11: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
4:17:23 PM: added 4 packages from 3 contributors and audited 26234 packages in 14.802s
4:17:25 PM: 29 packages are looking for funding
4:17:25 PM:   run `npm fund` for details
4:17:25 PM: found 6 low severity vulnerabilities
4:17:25 PM:   run `npm audit fix` to fix them, or `npm audit` for details
4:17:25 PM: NPM modules installed
4:17:25 PM: Started restoring cached go cache
4:17:25 PM: Finished restoring cached go cache
4:17:25 PM: unset GOOS;
4:17:25 PM: unset GOARCH;
4:17:25 PM: export GOROOT='/opt/buildhome/.gimme/versions/go1.12.linux.amd64';
4:17:25 PM: export PATH="/opt/buildhome/.gimme/versions/go1.12.linux.amd64/bin:${PATH}";
4:17:25 PM: go version >&2;
4:17:25 PM: export GIMME_ENV='/opt/buildhome/.gimme/env/go1.12.linux.amd64.env';
4:17:25 PM: go version go1.12 linux/amd64
4:17:25 PM: Installing missing commands
4:17:25 PM: Verify run directory
4:17:25 PM: Executing user command: gatsby build
4:17:28 PM: success open and validate gatsby-configs - 0.083s
4:17:30 PM: error Your plugins must export known APIs from their gatsby-browser.js.
4:17:30 PM: See https://www.gatsbyjs.org/docs/browser-apis/ for the list of Gatsby browser APIs.
4:17:30 PM: - The plugin gatsby-plugin-page-transitions@1.0.8 is using the API "replaceHistory" which is not a known API.
4:17:30 PM: - The plugin gatsby-plugin-page-transitions@1.0.8 is using the API "replaceHistory" which is not a known API.
4:17:30 PM: success load plugins - 1.605s
4:17:30 PM: warning The Google Analytics plugin requires a tracking ID. Did you mean to add it?
4:17:30 PM: success onPreInit - 0.006s
4:17:30 PM: success delete html and css files from previous builds - 0.010s
4:17:30 PM: success initialize cache - 0.007s
4:17:30 PM: success copy gatsby files - 0.026s
4:17:30 PM: success onPreBootstrap - 0.312s
4:17:30 PM: success createSchemaCustomization - 0.003s
4:17:34 PM:  -> wordpress__acf_options fetched : 1
4:17:36 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:37 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:38 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:39 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:40 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:40 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:43 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:43 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:44 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:45 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:46 PM:  -> wordpress__wp_api_menus_menus_items fetched : 1
4:17:46 PM:  -> wordpress__wp_api_menus_menus fetched : 11
4:17:50 PM:  -> wordpress__POST fetched : 274
4:17:52 PM:  -> wordpress__PAGE fetched : 37
4:17:57 PM:  -> wordpress__wp_media fetched : 759
4:17:58 PM:  -> wordpress__wp_herosliders fetched : 3
4:17:59 PM:  -> wordpress__wp_cta fetched : 1
4:18:00 PM:  -> wordpress__wp_footer fetched : 1
4:18:01 PM:  -> wordpress__wp_taxonomies fetched : 1
4:18:02 PM:  -> wordpress__CATEGORY fetched : 17
4:18:03 PM:  -> wordpress__TAG fetched : 66
4:18:04 PM:  -> wordpress__wp_users fetched : 2
4:18:15 PM:  -> wordpress__wp_comments fetched : 5091
4:18:37 PM: success Downloading remote files - 19.589s - 759/759 38.75/s
4:18:39 PM: success source and transform nodes - 69.405s
4:18:40 PM: warning Multiple node fields resolve to the same GraphQL field `wordpress__wp_comments.author` - [`author`, `author___NODE`]. Gatsby will use `author___NODE`.
4:18:40 PM: warning Multiple node fields resolve to the same GraphQL field `wordpress__wp_media.guid` - [`guid___NODE`, `guid`]. Gatsby will use `guid___NODE`.
4:18:40 PM: warning Multiple node fields resolve to the same GraphQL field `wordpress__PAGE.acf.section_1_image` - [`section_1_image`, `section_1_image___NODE`]. Gatsby will use `section_1_image___NODE`.
4:18:40 PM: warning Multiple node fields resolve to the same GraphQL field `wordpress__PAGE.acf.section_2_image` - [`section_2_image`, `section_2_image___NODE`]. Gatsby will use `section_2_image___NODE`.
4:18:41 PM: success building schema - 1.361s
4:18:41 PM: success createPages - 0.497s
4:18:41 PM: success createPagesStatefully - 0.092s
4:18:41 PM: success onPreExtractQueries - 0.000s
4:18:41 PM: success update schema - 0.043s
4:18:42 PM: success extract queries from components - 0.504s
4:18:42 PM: success write out requires - 0.007s
4:18:42 PM: success write out redirect data - 0.001s
4:18:42 PM: success Build manifest and related icons - 0.246s
4:18:42 PM: success onPostBootstrap - 0.247s
4:18:42 PM: ⠀
4:18:42 PM: info bootstrap finished - 76.921 s
4:18:42 PM: ⠀
4:19:25 PM: warning chunk styles [mini-css-extract-plugin]
4:19:25 PM: Conflicting order between:
4:19:25 PM:  * css ./node_modules/css-loader??ref--12-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-2!./node_modules/react-intl-tel-input/dist/main.css
4:19:25 PM:  * css ./node_modules/css-loader??ref--14-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-5!./node_modules/sass-loader/dist/cjs.js??ref--14-oneOf-1-3!./src/templates/styles/charts.scss
4:19:25 PM: warning chunk styles [mini-css-extract-plugin]
4:19:25 PM: Conflicting order between:
4:19:25 PM:  * css ./node_modules/css-loader??ref--12-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-2!./src/components/layout.css
4:19:25 PM:  * css ./node_modules/css-loader??ref--14-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-5!./node_modules/sass-loader/dist/cjs.js??ref--14-oneOf-1-3!./src/templates/styles/charts.scss
4:19:25 PM: warning chunk styles [mini-css-extract-plugin]
4:19:25 PM: Conflicting order between:
4:19:25 PM:  * css ./node_modules/css-loader??ref--12-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-2!./src/components/layout.css (1)
4:19:25 PM:  * css ./node_modules/css-loader??ref--14-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-5!./node_modules/sass-loader/dist/cjs.js??ref--14-oneOf-1-3!./src/templates/styles/charts.scss
4:19:25 PM: warning chunk styles [mini-css-extract-plugin]
4:19:25 PM: Conflicting order between:
4:19:25 PM:  * css ./node_modules/css-loader??ref--12-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-2!./src/components/layout.css (2)
4:19:25 PM:  * css ./node_modules/css-loader??ref--14-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-5!./node_modules/sass-loader/dist/cjs.js??ref--14-oneOf-1-3!./src/templates/styles/charts.scss
4:19:25 PM: warning chunk styles [mini-css-extract-plugin]
4:19:25 PM: Conflicting order between:
4:19:25 PM:  * css ./node_modules/css-loader??ref--12-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-2!./node_modules/bootstrap/dist/css/bootstrap-grid.css
4:19:25 PM:  * css ./node_modules/css-loader??ref--14-oneOf-1-1!./node_modules/postcss-loader/lib??postcss-5!./node_modules/sass-loader/dist/cjs.js??ref--14-oneOf-1-3!./src/templates/styles/charts.scss
4:19:25 PM: success Building production JavaScript and CSS bundles - 27.236s
4:19:26 PM: success Rewriting compilation hashes - 0.001s
4:19:26 PM: warning
4:19:26 PM:                  The requested width "900px" for a resolutions field for
4:19:26 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:26 PM:                  was larger than the actual image width of 800px!
4:19:26 PM:                  If possible, replace the current image with a larger one.
4:19:26 PM: warning
4:19:26 PM:                  The requested width "900px" for a resolutions field for
4:19:26 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:26 PM:                  was larger than the actual image width of 800px!
4:19:26 PM:                  If possible, replace the current image with a larger one.
4:19:26 PM: warning
4:19:26 PM:                  The requested width "900px" for a resolutions field for
4:19:26 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:26 PM:                  was larger than the actual image width of 800px!
4:19:26 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/a520a24af0b99e02888ff384ab0ff8e7/Islamic-financing-760x400.jpg
4:19:27 PM:                  was larger than the actual image width of 760px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/a520a24af0b99e02888ff384ab0ff8e7/Islamic-financing-760x400.jpg
4:19:27 PM:                  was larger than the actual image width of 760px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/a520a24af0b99e02888ff384ab0ff8e7/Islamic-financing-760x400.jpg
4:19:27 PM:                  was larger than the actual image width of 760px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:27 PM:                  was larger than the actual image width of 656px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6962f527335b6129af01bfe63cfa45ab/sollogoLOGOLU.jpg
4:19:27 PM:                  was larger than the actual image width of 768px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:27 PM:                  was larger than the actual image width of 656px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:27 PM:                  was larger than the actual image width of 656px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6962f527335b6129af01bfe63cfa45ab/sollogoLOGOLU.jpg
4:19:27 PM:                  was larger than the actual image width of 768px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6962f527335b6129af01bfe63cfa45ab/sollogoLOGOLU.jpg
4:19:27 PM:                  was larger than the actual image width of 768px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3f9400531b5dae2849bc662ad9d8320f/blog-img_02.jpg
4:19:27 PM:                  was larger than the actual image width of 710px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3f9400531b5dae2849bc662ad9d8320f/blog-img_02.jpg
4:19:27 PM:                  was larger than the actual image width of 710px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:27 PM: warning
4:19:27 PM:                  The requested width "900px" for a resolutions field for
4:19:27 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3f9400531b5dae2849bc662ad9d8320f/blog-img_02.jpg
4:19:27 PM:                  was larger than the actual image width of 710px!
4:19:27 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/f041699573e283c58e0d3b3e56b1739b/blog-image-14.jpg
4:19:28 PM:                  was larger than the actual image width of 870px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3077f589715bb0931939b0e024a90279/7-2.jpg
4:19:28 PM:                  was larger than the actual image width of 480px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:28 PM:                  was larger than the actual image width of 700px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/046ca971a619331cc525778fbd133f58/Untitled-1.jpg
4:19:28 PM:                  was larger than the actual image width of 800px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/f041699573e283c58e0d3b3e56b1739b/blog-image-14.jpg
4:19:28 PM:                  was larger than the actual image width of 870px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/f041699573e283c58e0d3b3e56b1739b/blog-image-14.jpg
4:19:28 PM:                  was larger than the actual image width of 870px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3077f589715bb0931939b0e024a90279/7-2.jpg
4:19:28 PM:                  was larger than the actual image width of 480px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3077f589715bb0931939b0e024a90279/7-2.jpg
4:19:28 PM:                  was larger than the actual image width of 480px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:28 PM:                  was larger than the actual image width of 700px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:28 PM:                  was larger than the actual image width of 700px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/046ca971a619331cc525778fbd133f58/Untitled-1.jpg
4:19:28 PM:                  was larger than the actual image width of 800px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/046ca971a619331cc525778fbd133f58/Untitled-1.jpg
4:19:28 PM:                  was larger than the actual image width of 800px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:28 PM:                  was larger than the actual image width of 800px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/4d45269c56586a8c4dffc4c4f474e9c7/870x500-4.jpg
4:19:28 PM:                  was larger than the actual image width of 870px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:28 PM:                  was larger than the actual image width of 800px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:28 PM:                  was larger than the actual image width of 800px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/4d45269c56586a8c4dffc4c4f474e9c7/870x500-4.jpg
4:19:28 PM:                  was larger than the actual image width of 870px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/4d45269c56586a8c4dffc4c4f474e9c7/870x500-4.jpg
4:19:28 PM:                  was larger than the actual image width of 870px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:28 PM:                  was larger than the actual image width of 700px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:28 PM:                  was larger than the actual image width of 700px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:28 PM:                  was larger than the actual image width of 700px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:28 PM:                  was larger than the actual image width of 656px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:28 PM:                  was larger than the actual image width of 656px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:28 PM: warning
4:19:28 PM:                  The requested width "900px" for a resolutions field for
4:19:28 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:28 PM:                  was larger than the actual image width of 656px!
4:19:28 PM:                  If possible, replace the current image with a larger one.
4:19:29 PM: warning
4:19:29 PM:                  The requested width "900px" for a resolutions field for
4:19:29 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:29 PM:                  was larger than the actual image width of 656px!
4:19:29 PM:                  If possible, replace the current image with a larger one.
4:19:30 PM: warning
4:19:30 PM:                  The requested width "900px" for a resolutions field for
4:19:30 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:30 PM:                  was larger than the actual image width of 656px!
4:19:30 PM:                  If possible, replace the current image with a larger one.
4:19:30 PM: warning
4:19:30 PM:                  The requested width "900px" for a resolutions field for
4:19:30 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:30 PM:                  was larger than the actual image width of 656px!
4:19:30 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:31 PM:                  was larger than the actual image width of 800px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:31 PM:                  was larger than the actual image width of 800px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:31 PM:                  was larger than the actual image width of 800px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:31 PM:                  was larger than the actual image width of 656px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:31 PM:                  was larger than the actual image width of 700px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/4d45269c56586a8c4dffc4c4f474e9c7/870x500-4.jpg
4:19:31 PM:                  was larger than the actual image width of 870px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:31 PM:                  was larger than the actual image width of 700px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:31 PM:                  was larger than the actual image width of 700px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/4d45269c56586a8c4dffc4c4f474e9c7/870x500-4.jpg
4:19:31 PM:                  was larger than the actual image width of 870px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/4d45269c56586a8c4dffc4c4f474e9c7/870x500-4.jpg
4:19:31 PM:                  was larger than the actual image width of 870px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:31 PM:                  was larger than the actual image width of 656px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:31 PM: warning
4:19:31 PM:                  The requested width "900px" for a resolutions field for
4:19:31 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/087789f06cbbdf77a3c7ac2ee3a10f23/turkish-bath.jpg
4:19:31 PM:                  was larger than the actual image width of 656px!
4:19:31 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6962f527335b6129af01bfe63cfa45ab/sollogoLOGOLU.jpg
4:19:32 PM:                  was larger than the actual image width of 768px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/046ca971a619331cc525778fbd133f58/Untitled-1.jpg
4:19:32 PM:                  was larger than the actual image width of 800px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/9f2f54cf2b8887b997d249c495fa8e12/870x500.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6962f527335b6129af01bfe63cfa45ab/sollogoLOGOLU.jpg
4:19:32 PM:                  was larger than the actual image width of 768px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6962f527335b6129af01bfe63cfa45ab/sollogoLOGOLU.jpg
4:19:32 PM:                  was larger than the actual image width of 768px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/046ca971a619331cc525778fbd133f58/Untitled-1.jpg
4:19:32 PM:                  was larger than the actual image width of 800px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/046ca971a619331cc525778fbd133f58/Untitled-1.jpg
4:19:32 PM:                  was larger than the actual image width of 800px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3f9400531b5dae2849bc662ad9d8320f/blog-img_02.jpg
4:19:32 PM:                  was larger than the actual image width of 710px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/f041699573e283c58e0d3b3e56b1739b/blog-image-14.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3077f589715bb0931939b0e024a90279/7-2.jpg
4:19:32 PM:                  was larger than the actual image width of 480px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3f9400531b5dae2849bc662ad9d8320f/blog-img_02.jpg
4:19:32 PM:                  was larger than the actual image width of 710px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3f9400531b5dae2849bc662ad9d8320f/blog-img_02.jpg
4:19:32 PM:                  was larger than the actual image width of 710px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/f041699573e283c58e0d3b3e56b1739b/blog-image-14.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/f041699573e283c58e0d3b3e56b1739b/blog-image-14.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3077f589715bb0931939b0e024a90279/7-2.jpg
4:19:32 PM:                  was larger than the actual image width of 480px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3077f589715bb0931939b0e024a90279/7-2.jpg
4:19:32 PM:                  was larger than the actual image width of 480px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/9f2f54cf2b8887b997d249c495fa8e12/870x500.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/9f2f54cf2b8887b997d249c495fa8e12/870x500.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/a520a24af0b99e02888ff384ab0ff8e7/Islamic-financing-760x400.jpg
4:19:32 PM:                  was larger than the actual image width of 760px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/d363c197de544cd5496ce0dc71e398b9/402996.jpg
4:19:32 PM:                  was larger than the actual image width of 670px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/9f2f54cf2b8887b997d249c495fa8e12/870x500.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3964bdbdb100e4329420b3711a13c967/post-img-2-800x460.jpg
4:19:32 PM:                  was larger than the actual image width of 800px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/9f2f54cf2b8887b997d249c495fa8e12/870x500.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:32 PM: warning
4:19:32 PM:                  The requested width "900px" for a resolutions field for
4:19:32 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/9f2f54cf2b8887b997d249c495fa8e12/870x500.jpg
4:19:32 PM:                  was larger than the actual image width of 870px!
4:19:32 PM:                  If possible, replace the current image with a larger one.
4:19:33 PM: warning
4:19:33 PM:                  The requested width "900px" for a resolutions field for
4:19:33 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/a520a24af0b99e02888ff384ab0ff8e7/Islamic-financing-760x400.jpg
4:19:33 PM:                  was larger than the actual image width of 760px!
4:19:33 PM:                  If possible, replace the current image with a larger one.
4:19:33 PM: warning
4:19:33 PM:                  The requested width "900px" for a resolutions field for
4:19:33 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/a520a24af0b99e02888ff384ab0ff8e7/Islamic-financing-760x400.jpg
4:19:33 PM:                  was larger than the actual image width of 760px!
4:19:33 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/d363c197de544cd5496ce0dc71e398b9/402996.jpg
4:19:34 PM:                  was larger than the actual image width of 670px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/d363c197de544cd5496ce0dc71e398b9/402996.jpg
4:19:34 PM:                  was larger than the actual image width of 670px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3964bdbdb100e4329420b3711a13c967/post-img-2-800x460.jpg
4:19:34 PM:                  was larger than the actual image width of 800px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/3964bdbdb100e4329420b3711a13c967/post-img-2-800x460.jpg
4:19:34 PM:                  was larger than the actual image width of 800px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6bdbc33856a4aeba464656028cf90cde/expat-guide-turkey-acquisition-of-turkish-citizenship.jpg
4:19:34 PM:                  was larger than the actual image width of 880px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/65d7a8ed500525ba56d664be213fce57/course-10.jpg
4:19:34 PM:                  was larger than the actual image width of 870px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/944a09d0bdd57267d4ad0b7435b4655e/bigstock-129845297-750x345.jpg
4:19:34 PM:                  was larger than the actual image width of 750px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:34 PM:                  was larger than the actual image width of 710px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5746fd34ff73dd5ef56934c0f705b89c/Depositphotos_120508802_original.jpg
4:19:34 PM:                  was larger than the actual image width of 860px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6bdbc33856a4aeba464656028cf90cde/expat-guide-turkey-acquisition-of-turkish-citizenship.jpg
4:19:34 PM:                  was larger than the actual image width of 880px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/6bdbc33856a4aeba464656028cf90cde/expat-guide-turkey-acquisition-of-turkish-citizenship.jpg
4:19:34 PM:                  was larger than the actual image width of 880px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/65d7a8ed500525ba56d664be213fce57/course-10.jpg
4:19:34 PM:                  was larger than the actual image width of 870px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/65d7a8ed500525ba56d664be213fce57/course-10.jpg
4:19:34 PM:                  was larger than the actual image width of 870px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/944a09d0bdd57267d4ad0b7435b4655e/bigstock-129845297-750x345.jpg
4:19:34 PM:                  was larger than the actual image width of 750px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/944a09d0bdd57267d4ad0b7435b4655e/bigstock-129845297-750x345.jpg
4:19:34 PM:                  was larger than the actual image width of 750px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:34 PM:                  was larger than the actual image width of 710px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:34 PM: warning
4:19:34 PM:                  The requested width "900px" for a resolutions field for
4:19:34 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:34 PM:                  was larger than the actual image width of 710px!
4:19:34 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5746fd34ff73dd5ef56934c0f705b89c/Depositphotos_120508802_original.jpg
4:19:35 PM:                  was larger than the actual image width of 860px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5746fd34ff73dd5ef56934c0f705b89c/Depositphotos_120508802_original.jpg
4:19:35 PM:                  was larger than the actual image width of 860px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/22721768f4798bb305dd81cc8963a68e/132228.jpg
4:19:35 PM:                  was larger than the actual image width of 633px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ce7fbc4ab7143306d85c301b23316668/7-2.jpg
4:19:35 PM:                  was larger than the actual image width of 480px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/bbbf806a4c04973f1ecf8faa6c1c9996/870x500-8.jpg
4:19:35 PM:                  was larger than the actual image width of 870px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:35 PM:                  was larger than the actual image width of 710px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/7529f7c52b9039d61d4f91c0a318439c/870x500-6.jpg
4:19:35 PM:                  was larger than the actual image width of 870px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/d363c197de544cd5496ce0dc71e398b9/402996.jpg
4:19:35 PM:                  was larger than the actual image width of 670px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:35 PM:                  was larger than the actual image width of 710px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:35 PM:                  was larger than the actual image width of 710px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/d363c197de544cd5496ce0dc71e398b9/402996.jpg
4:19:35 PM:                  was larger than the actual image width of 670px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:35 PM: warning
4:19:35 PM:                  The requested width "900px" for a resolutions field for
4:19:35 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/d363c197de544cd5496ce0dc71e398b9/402996.jpg
4:19:35 PM:                  was larger than the actual image width of 670px!
4:19:35 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/22721768f4798bb305dd81cc8963a68e/132228.jpg
4:19:36 PM:                  was larger than the actual image width of 633px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/22721768f4798bb305dd81cc8963a68e/132228.jpg
4:19:36 PM:                  was larger than the actual image width of 633px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ce7fbc4ab7143306d85c301b23316668/7-2.jpg
4:19:36 PM:                  was larger than the actual image width of 480px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ce7fbc4ab7143306d85c301b23316668/7-2.jpg
4:19:36 PM:                  was larger than the actual image width of 480px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/bbbf806a4c04973f1ecf8faa6c1c9996/870x500-8.jpg
4:19:36 PM:                  was larger than the actual image width of 870px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/bbbf806a4c04973f1ecf8faa6c1c9996/870x500-8.jpg
4:19:36 PM:                  was larger than the actual image width of 870px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/7529f7c52b9039d61d4f91c0a318439c/870x500-6.jpg
4:19:36 PM:                  was larger than the actual image width of 870px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:36 PM: warning
4:19:36 PM:                  The requested width "900px" for a resolutions field for
4:19:36 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/7529f7c52b9039d61d4f91c0a318439c/870x500-6.jpg
4:19:36 PM:                  was larger than the actual image width of 870px!
4:19:36 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5746fd34ff73dd5ef56934c0f705b89c/Depositphotos_120508802_original.jpg
4:19:37 PM:                  was larger than the actual image width of 860px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5a3b8b022407dc41c0bea318d36c98e3/5.jpg
4:19:37 PM:                  was larger than the actual image width of 848px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/537a044ea7eb9ebf8a33f07a354dc717/course-12.jpg
4:19:37 PM:                  was larger than the actual image width of 870px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:37 PM:                  was larger than the actual image width of 700px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5746fd34ff73dd5ef56934c0f705b89c/Depositphotos_120508802_original.jpg
4:19:37 PM:                  was larger than the actual image width of 860px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5746fd34ff73dd5ef56934c0f705b89c/Depositphotos_120508802_original.jpg
4:19:37 PM:                  was larger than the actual image width of 860px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:37 PM:                  was larger than the actual image width of 700px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:37 PM:                  was larger than the actual image width of 700px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5a3b8b022407dc41c0bea318d36c98e3/5.jpg
4:19:37 PM:                  was larger than the actual image width of 848px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/5a3b8b022407dc41c0bea318d36c98e3/5.jpg
4:19:37 PM:                  was larger than the actual image width of 848px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:37 PM:                  was larger than the actual image width of 700px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/537a044ea7eb9ebf8a33f07a354dc717/course-12.jpg
4:19:37 PM:                  was larger than the actual image width of 870px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:37 PM:                  was larger than the actual image width of 700px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/0ff0878b0822843c18ea7e5aca42911c/turkish-flag.jpg
4:19:37 PM:                  was larger than the actual image width of 700px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/537a044ea7eb9ebf8a33f07a354dc717/course-12.jpg
4:19:37 PM:                  was larger than the actual image width of 870px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/537a044ea7eb9ebf8a33f07a354dc717/course-12.jpg
4:19:37 PM:                  was larger than the actual image width of 870px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:37 PM:                  was larger than the actual image width of 710px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/537a044ea7eb9ebf8a33f07a354dc717/course-12.jpg
4:19:37 PM:                  was larger than the actual image width of 870px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/537a044ea7eb9ebf8a33f07a354dc717/course-12.jpg
4:19:37 PM:                  was larger than the actual image width of 870px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:37 PM:                  was larger than the actual image width of 710px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/ae4cf3b1380349debb7cbb8c26afeed8/blog-img_01-1.jpg
4:19:37 PM:                  was larger than the actual image width of 710px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:37 PM:                  was larger than the actual image width of 800px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:37 PM:                  was larger than the actual image width of 800px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:19:37 PM: warning
4:19:37 PM:                  The requested width "900px" for a resolutions field for
4:19:37 PM:                  the file /opt/build/repo/.cache/gatsby-source-filesystem/78581fd78dd8f50a29910583b02d0c55/post-img-6-800x460.jpg
4:19:37 PM:                  was larger than the actual image width of 800px!
4:19:37 PM:                  If possible, replace the current image with a larger one.
4:20:20 PM: success run queries - 97.661s - 378/378 3.87/s
4:32:48 PM: success Generating image thumbnails - 845.661s - 3888/3888 4.60/s
4:32:55 PM: [ 5, 7, 6, 3, 1, 2 ]
4:32:55 PM: [ 8, 7, 1, 5, 2, 4, 6 ]
4:32:56 PM: [ 6, 4, 7, 5, 8, 2 ]
4:32:56 PM: [ 2, 6, 1, 4, 3, 7, 8 ]
4:33:03 PM: failed Building static HTML for pages - 14.501s
4:33:03 PM: error Building static HTML failed for path "/good-news-foreigners-who-buy-a-house-in-turkey-will-not-pay-18-vat/"
4:33:03 PM: 
**4:33:03 PM:   TypeError: Cannot read property 'node' of undefined**
4:33:03 PM:   
**4:33:03 PM:   - RecomendedPosts.js:11 RecomendedPosts**
4:33:03 PM:     webpack-internal:///./src/components/RecomendedPosts.js:11:11756
4:33:03 PM:   
4:33:03 PM:   - react-dom-server.node.production.min.js:36 d
4:33:03 PM:     [repo]/[react-dom]/cjs/react-dom-server.node.production.min.js:36:498
4:33:03 PM:   
4:33:03 PM:   - react-dom-server.node.production.min.js:39 Za
4:33:03 PM:     [repo]/[react-dom]/cjs/react-dom-server.node.production.min.js:39:16
4:33:03 PM:   
4:33:03 PM:   - react-dom-server.node.production.min.js:44 a.b.render
4:33:03 PM:     [repo]/[react-dom]/cjs/react-dom-server.node.production.min.js:44:476
4:33:03 PM:   
4:33:03 PM:   - react-dom-server.node.production.min.js:44 a.b.read
4:33:03 PM:     [repo]/[react-dom]/cjs/react-dom-server.node.production.min.js:44:18
4:33:03 PM:   
4:33:03 PM:   - react-dom-server.node.production.min.js:54 renderToString
4:33:03 PM:     [repo]/[react-dom]/cjs/react-dom-server.node.production.min.js:54:364
4:33:03 PM:   
4:33:03 PM:   - static-entry.js:17 Module.__webpack_exports__.default
4:33:03 PM:     webpack-internal:///./.cache/static-entry.js:17:28
4:33:03 PM:   
4:33:03 PM:   - render-html.js:35 Promise
4:33:03 PM:     [repo]/[gatsby]/dist/utils/worker/render-html.js:35:36
4:33:03 PM:   
4:33:03 PM:   - debuggability.js:384 Promise._execute
4:33:03 PM:     [repo]/[bluebird]/js/release/debuggability.js:384:9
4:33:03 PM:   
4:33:03 PM:   - promise.js:518 Promise._resolveFromExecutor
4:33:03 PM:     [repo]/[bluebird]/js/release/promise.js:518:18
4:33:03 PM:   
4:33:03 PM:   - promise.js:103 new Promise
4:33:03 PM:     [repo]/[bluebird]/js/release/promise.js:103:10
4:33:03 PM:   
4:33:03 PM:   - render-html.js:31 Promise.map.path
4:33:03 PM:     [repo]/[gatsby]/dist/utils/worker/render-html.js:31:37
4:33:03 PM:   
4:33:03 PM:   - util.js:16 tryCatcher
4:33:03 PM:     [repo]/[bluebird]/js/release/util.js:16:23
4:33:03 PM:   
4:33:03 PM:   - map.js:68 MappingPromiseArray._promiseFulfilled
4:33:03 PM:     [repo]/[bluebird]/js/release/map.js:68:38
4:33:03 PM:   
4:33:03 PM:   - promise_array.js:115 MappingPromiseArray.PromiseArray._iterate
4:33:03 PM:     [repo]/[bluebird]/js/release/promise_array.js:115:31
4:33:03 PM:   
4:33:03 PM:   - promise_array.js:79 MappingPromiseArray.init
4:33:03 PM:     [repo]/[bluebird]/js/release/promise_array.js:79:10
4:33:03 PM:   
4:33:03 PM: 
4:33:04 PM: failed during stage 'building site': Command did not finish within the time limit
4:33:04 PM: Execution timed out after 15m0s
4:33:04 PM: Error running command: Command did not finish within the time limit
4:33:04 PM: Failing build: Failed to build site
4:33:04 PM: Finished processing build request in 16m16.613053576s

Would it be possible for you to maybe locate the error and ask about that rather than just posting a ginormous wall of text

4:33:03 PM: TypeError: Cannot read property ‘node’ of undefined
4:33:03 PM:
4:33:03 PM: - RecomendedPosts.js:11 RecomendedPosts
4:33:03 PM: webpack-internal:///./src/components/RecomendedPosts.js:11:11756

const maxNumber = 120;
const arrayNumber = [];

for (let i=0; i<11;i++) {
  const randomNumber = Math.floor((Math.random() * maxNumber) + 1); 
  if(arrayNumber.indexOf(randomNumber)===-1) {
    arrayNumber.push ( randomNumber )
  }
}

RecomendedPosts.js:11 is the above highlighted line. Am I doing something wrong where I have If condition.

Have you checked the data coming back from the query?

data.allWordpressPost.edges[tempOne].node

Yes, it shows when I run gatsby develop command but when I try to run gatsby build or deploy to Netlify. It gives error TypeError: Cannot read property ‘node’ of undefined
Whereas I have a total of 155 posts and I am just fetching 122 random posts.

What if you conditionally render everything, not just the link/image.

how should I do this conditioning. Is it possible that random number is generating any number with decimals?

Like you already are for the featured_media but just do it for the node property or however far up you need to go on the object to make sure it isn’t empty/undefined/null. Basically don’t try to render something unless it is available.

{data.allWordpressPost.edges[tempOne].node ? (      
    <div class="post-module-2">
      <div class="thumbnail-2">
            <div className="col-sm-4 pl-sm-1"  >
            {data.allWordpressPost.edges[tempOne].node.featured_media ? (
            <div>
            <Link to={`/${data.allWordpressPost.edges[tempOne].node.slug}/`} style={{ paddingTop: '50px' }} >
            <Img resolutions={data.allWordpressPost.edges[tempOne].node.featured_media.localFile.childImageSharp.resolutions} style={{ paddingRight: '40px' }}/>  
            </Link>
           </div>
          ) : null}                   
            {data.allWordpressPost.edges[tempOne].node.slug ? (
              <Link to={`/${data.allWordpressPost.edges[tempOne].node.slug}/`} >
              <b class="title-2">{data.allWordpressPost.edges[tempOne].node.title}</b>
              </Link>
           ) : null}  
              </div>
            </div>     
            </div>
       ) : null}

I applied conditioning before all nodes rendering but still it show TypeError: Cannot read property ‘node’ of undefined

const maxNumber = 120;
const arrayNumber = [];  
while(arrayNumber.length <11){
    var randomNumber = Math.floor(Math.random() * maxNumber) + 1;
    if(arrayNumber.indexOf(randomNumber ) === -1) arrayNumber.push(randomNumber);
}

after using above logic I am able to build the site locally but when I deploy on netlify it shows below error:

1:04:22 PM: [ 75, 19, 33, 47, 63, 66, 38, 54, 62, 50, 27 ]
1:04:22 PM: [ 5, 14, 80, 73, 20, 21, 22, 19, 75, 28, 6 ]
1:04:23 PM: [ 36, 43, 72, 60, 64, 79, 16, 66, 63, 62, 77 ]
1:04:23 PM: [ 58, 77, 75, 6, 40, 73, 63, 18, 67, 79, 35 ]
1:04:23 PM: success Building static HTML for pages - 14.715s - 371/371 25.21/s
1:04:23 PM: warning commons-4819a93ac4c4be8bd7b3.js is 2.23 MB, and won’t be precached. Configure maximumFileSizeToCacheInBytes to change this limit.
1:04:23 PM: info Generated public/sw.js, which will precache 12 files, totaling 1979197 bytes.
1:04:23 PM: The following pages will be precached:
1:04:23 PM: /offline-plugin-app-shell-fallback/index.html
1:04:23 PM: info Done building in 970.147 sec
1:04:24 PM: Execution timed out after 15m0s
1:04:24 PM: Error running command: Command did not finish within the time limit
1:04:24 PM: Failing build: Failed to build site
1:04:25 PM: failed during stage ‘building site’: Command did not finish within the time limit
1:04:25 PM: Finished processing build request in 16m44.274788844s

Something may be hanging the build process.

How long does it take to build locally?
How large is the Wordpress site?

Here is the screenshot of my local build its 403.6210555 sec

Netlify has a limit of 15 mins on build times I think (at least on the free tier). You need to be on a paid plan to be able to buy/get more minutes.

You should optimize your build (or split it up) and only send the assets.

Whereas if I see the Netlify Deploy Log It says, why it takes double time:
1:04:23 PM: info Done building in 970.147 sec

You are not counting the time it would take for the setup of the dependencies, which includes everything from python, etc. that you probably are not using and maybe things like time it would take the upload from the CD container to there edge nodes on the CDN.

Anyway, my best bet is that you check on the netlify support community forum and the gatsby community forum, to get more eyes on this, now that your local build is working as expected.

Thanks for your response. I got below responses from netlify:

I’m not as familiar with Gatsby but just by reading through your log files it appears that a large portion of your build process requires generating assets from scratch as well as downloading binaries from source.

Support will probably have a better answer for why your build times are so long but my best guess is because a lot of compute-heavy commands need to run before the site is actually built and ready to go. One way to cut down on your build times would be to minimize the amount of operations done during a deploy and have the majority of the heavy lifting done before deployment so Netlifys build image doesn’t have to build your site from scratch for every deploy.
For more information, I recommend checking out this post: https://community.netlify.com/t/common-issue-how-can-i-optimize-my-netlify-build-time/3907

Based on the size and number of files in your build, it looks like the deploy is not able to complete in 15 minutes, which is the deploy time cutoff for our free product. There’s a bit more information in this response:

Some things you could look into would be:
storing your large files externally (like an S3 bucket) and linking to them in your site so your site doesn’t have to incorporate them into every build and deploy
checking out Netlify Large Media