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.
45 lines
1.3 KiB
JavaScript
45 lines
1.3 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: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
|
|
author: `@Alexandr Beknazaryan`,
|
|
siteUrl: `https://gatsbystarterdefaultsource.gatsbyjs.io/`,
|
|
},
|
|
plugins: [
|
|
'gatsby-plugin-postcss',
|
|
`gatsby-plugin-image`,
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `images`,
|
|
path: `${__dirname}/src/images`,
|
|
},
|
|
},
|
|
`gatsby-transformer-sharp`,
|
|
`gatsby-plugin-sharp`,
|
|
{
|
|
resolve: `gatsby-plugin-manifest`,
|
|
options: {
|
|
name: `gatsby-starter-default`,
|
|
short_name: `starter`,
|
|
start_url: `/`,
|
|
background_color: `#663399`,
|
|
// This will impact how browsers show your PWA/website
|
|
// https://css-tricks.com/meta-theme-color-and-trickery/
|
|
// theme_color: `#663399`,
|
|
display: `minimal-ui`,
|
|
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
|
|
},
|
|
},
|
|
],
|
|
}
|