You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
/**
|
|
* 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.
|
|
},
|
|
},
|
|
],
|
|
}
|