/** * Configure your Gatsby site with this file. * * See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-config/ */ /** * @type {import('gatsby').GatsbyConfig} */ module.exports = { siteMetadata: { title: `Talent Team`, description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`, author: `@Alexandr Beknazaryan`, siteUrl: `https://gatsbystarterdefaultsource.gatsbyjs.io/`, }, plugins: [ 'gatsby-plugin-postcss', `gatsby-plugin-image`, { resolve: `gatsby-source-filesystem`, options: { name: `images`, path: `${__dirname}/src/images`, }, }, `gatsby-transformer-sharp`, `gatsby-plugin-sharp`, { resolve: `gatsby-plugin-manifest`, options: { icon: `src/images/logo-black.svg`, // This path is relative to the root of the site. }, }, ], }