/** * @type {import('gatsby').GatsbyConfig} */ module.exports = { siteMetadata: { title: `АудитКонсалт`, description: `Какое-то описание красивое`, author: `@Alexandr Beknazaryan`, siteUrl: `https://www.yourdomain.tld` }, plugins: ["gatsby-plugin-postcss", "gatsby-plugin-image", "gatsby-plugin-sitemap", "gatsby-plugin-sharp", "gatsby-plugin-webpack-bundle-analyser-v2", "gatsby-transformer-sharp", { resolve: 'gatsby-source-filesystem', options: { "name": "images", "path": "./src/images/" }, __key: "images" }, { resolve: "gatsby-plugin-react-svg", options: { rule: { include: /images/ // See below to configure properly } } } ] };