Init
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
siteMetadata: {
|
||||
title: 'Market Trends Scouting',
|
||||
siteUrl: 'https://www.yourdomain.tld',
|
||||
},
|
||||
plugins: [
|
||||
'gatsby-plugin-styled-components',
|
||||
'gatsby-plugin-image',
|
||||
'gatsby-transformer-remark',
|
||||
'gatsby-plugin-sharp',
|
||||
'gatsby-transformer-sharp',
|
||||
'gatsby-transformer-json',
|
||||
'gatsby-plugin-sass',
|
||||
{
|
||||
resolve: `gatsby-plugin-alias-imports`,
|
||||
options: {
|
||||
alias: {
|
||||
'@components': path.resolve(__dirname, 'src/components'),
|
||||
},
|
||||
extensions: [],
|
||||
},
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-google-fonts',
|
||||
options: {
|
||||
fonts: ['Poppins:400,500,600,700', 'Volkhov:400,500,600,700i'],
|
||||
display: 'swap',
|
||||
},
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-source-filesystem',
|
||||
options: {
|
||||
path: './src/data/',
|
||||
name: 'products',
|
||||
},
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-source-filesystem',
|
||||
options: {
|
||||
name: 'images',
|
||||
path: './src/images/',
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user