-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
28 lines (28 loc) · 952 Bytes
/
gatsby-config.js
File metadata and controls
28 lines (28 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module.exports = {
siteMetadata: {
title: 'Passcode - Software House',
description: 'Desenvolvimento de aplicativos móveis, sites, IA, testes de software e soluções em nuvem para negócios.',
author: '@passcode',
keywords: ['software house', 'desenvolvimento de aplicativos móveis', 'design de sites', 'testes de software', 'inteligência artificial', 'back-end', 'soluções em nuvem', 'qualidade de software'],
siteUrl: 'https://www.passcode.com.br/', // Substitua pelo seu domínio
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images/`, // 🔥 Isso é essencial!
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-styled-components`,
options: {
// Add any options here
},
},
],
};