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-18 08:17:28 +00:00
|
|
|
"gatsby-plugin-image",
|
|
|
|
"gatsby-plugin-react-helmet",
|
|
|
|
"gatsby-plugin-sharp",
|
|
|
|
"gatsby-transformer-sharp",
|
|
|
|
"gatsby-plugin-postcss",
|
2022-02-17 11:16:21 +00:00
|
|
|
{
|
2022-02-18 08:17:28 +00:00
|
|
|
resolve: "gatsby-source-filesystem",
|
2022-02-15 09:04:19 +00:00
|
|
|
options: {
|
2022-02-18 08:17:28 +00:00
|
|
|
name: "images",
|
|
|
|
path: "./src/images/",
|
2022-02-15 09:04:19 +00:00
|
|
|
},
|
2022-02-18 08:17:28 +00:00
|
|
|
__key: "images",
|
2022-02-17 11:16:21 +00:00
|
|
|
},
|
|
|
|
{
|
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-18 08:17:28 +00:00
|
|
|
"styled-components": "./node_modules/styled-components",
|
2022-02-15 09:04:19 +00:00
|
|
|
},
|
2022-02-18 08:17:28 +00:00
|
|
|
extensions: ["js"],
|
2022-02-17 11:16:21 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2022-02-18 08:17:28 +00:00
|
|
|
};
|