47 lines
1010 B
JavaScript
47 lines
1010 B
JavaScript
|
|
const path = require('path');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
siteMetadata: {
|
||
|
|
title: 'Market Trends Scouting',
|
||
|
|
siteUrl: 'https://www.yourdomain.tld',
|
||
|
|
},
|
||
|
|
plugins: [
|
||
|
|
'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/',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|