Files
test/gatsby-config.js
T
Dmytro Tkachenko 9a138e53a9
Build Action / Run-Build (push) Successful in 3m7s
Actions
2024-10-22 22:44:24 +03:00

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/',
},
},
],
};