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.
29 lines
763 B
JavaScript
29 lines
763 B
JavaScript
/**
|
|
* @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
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}; |