const siteUrl = "https://dwysokinski.me" module.exports = { siteMetadata: { title: `Dawid Wysokiński | Full Stack Web Developer`, description: `Dawid Wysokiński - Full Stack Web Developer | Back End Developer | Front End Developer`, authorTwitter: `@Dawid56143781`, authorFullName: "Dawid Wysokiński", siteUrl, }, plugins: [ `gatsby-plugin-react-helmet`, { resolve: `gatsby-source-filesystem`, options: { name: `images`, path: `${__dirname}/src/images`, }, }, `gatsby-transformer-sharp`, `gatsby-plugin-sharp`, { resolve: `gatsby-plugin-manifest`, options: { name: `dwysokinski.me`, short_name: `dw`, start_url: `/`, background_color: `#303030`, theme_color: `#303030`, display: `minimal-ui`, icon: `src/images/logo.svg`, // This path is relative to the root of the site. }, }, { resolve: `gatsby-theme-material-ui`, options: { webFontsConfig: null, }, }, `gatsby-plugin-sitemap`, { resolve: "gatsby-plugin-robots-txt", options: { host: siteUrl, sitemap: siteUrl + "/sitemap.xml", env: { development: { policy: [{ userAgent: "*", disallow: ["/"] }], }, production: { policy: [{ userAgent: "*", allow: "/" }], }, }, }, }, // this (optional) plugin enables Progressive Web App + Offline functionality // To learn more, visit: https://gatsby.dev/offline // `gatsby-plugin-offline`, ], }