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.
17 lines
454 B
JavaScript
17 lines
454 B
JavaScript
/**
|
|
* @type {import('gatsby').GatsbyConfig}
|
|
*/
|
|
module.exports = {
|
|
siteMetadata: {
|
|
title: `АудитКонсалт`,
|
|
siteUrl: `https://www.yourdomain.tld`
|
|
},
|
|
plugins: ["gatsby-plugin-postcss", "gatsby-plugin-image", "gatsby-plugin-sitemap", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
"name": "images",
|
|
"path": "./src/images/"
|
|
},
|
|
__key: "images"
|
|
}]
|
|
}; |