This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2022-02-15 09:04:19 +00:00
|
|
|
module.exports = {
|
|
|
|
siteMetadata: {
|
2022-02-17 11:16:21 +00:00
|
|
|
title: `Accounts Dashboard`,
|
|
|
|
siteUrl: `https://www.yourdomain.tld`,
|
2022-02-15 09:04:19 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
2022-02-17 11:16:21 +00:00
|
|
|
'gatsby-plugin-image',
|
|
|
|
'gatsby-plugin-react-helmet',
|
|
|
|
'gatsby-plugin-sharp',
|
|
|
|
'gatsby-transformer-sharp',
|
|
|
|
'gatsby-plugin-postcss',
|
|
|
|
{
|
2022-02-15 09:04:19 +00:00
|
|
|
resolve: 'gatsby-source-filesystem',
|
|
|
|
options: {
|
2022-02-17 11:16:21 +00:00
|
|
|
name: 'images',
|
|
|
|
path: './src/images/',
|
2022-02-15 09:04:19 +00:00
|
|
|
},
|
2022-02-17 11:16:21 +00:00
|
|
|
__key: 'images',
|
|
|
|
},
|
|
|
|
{
|
2022-02-15 09:04:19 +00:00
|
|
|
resolve: `gatsby-plugin-alias-imports`,
|
|
|
|
options: {
|
|
|
|
alias: {
|
|
|
|
// Allows npm link-ing skynet-storybook during development.
|
2022-02-17 11:16:21 +00:00
|
|
|
'styled-components': './node_modules/styled-components',
|
2022-02-15 09:04:19 +00:00
|
|
|
},
|
2022-02-17 11:16:21 +00:00
|
|
|
extensions: ['js'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|