/** * 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: `Развиваем и создаем команды. Профессиональная команда поразработке и проведению корпоративных мероприятий: бизнес-игры,тимбилдинги, фамилитации, бизнес-тренинги. Руководитель компании Алёна Крюкова сертиыицированный бизнес-тренер, фасилитатор.`, author: `@Alexandr Beknazaryan`, siteUrl: `https://talent-t.ru`, }, plugins: [ { resolve: "gatsby-plugin-webpack-bundle-analyser-v2", options: { devMode: true, }, }, 'gatsby-plugin-postcss', `gatsby-plugin-image`, `gatsby-plugin-sitemap`, { 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. }, }, ], }