mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-16 01:55:15 +01:00
85 lines
1.9 KiB
JavaScript
85 lines
1.9 KiB
JavaScript
const path = require('path')
|
|
const fs = require('fs')
|
|
const yaml = require('js-yaml')
|
|
const meta = yaml.load(fs.readFileSync('./data/meta.yml', 'utf8'))
|
|
const { url, googleanalytics, matomoUrl, matomoSite } = meta
|
|
|
|
module.exports = {
|
|
siteMetadata: {
|
|
siteUrl: `${url}`,
|
|
},
|
|
plugins: [
|
|
'gatsby-plugin-react-next',
|
|
'gatsby-plugin-react-helmet',
|
|
'gatsby-transformer-yaml',
|
|
'gatsby-transformer-sharp',
|
|
'gatsby-plugin-sharp',
|
|
'gatsby-plugin-sitemap',
|
|
'gatsby-plugin-offline',
|
|
{
|
|
resolve: 'gatsby-plugin-sass',
|
|
options: {
|
|
includePaths: [`${__dirname}/node_modules`, `${__dirname}/src/styles`],
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'data',
|
|
path: path.join(__dirname, 'data'),
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'images',
|
|
path: path.join(__dirname, 'src', 'images'),
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-google-analytics',
|
|
options: {
|
|
trackingId: `${googleanalytics}`,
|
|
head: false,
|
|
anonymize: true,
|
|
respectDNT: true,
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-matomo',
|
|
options: {
|
|
siteId: `${matomoSite}`,
|
|
siteUrl: `${url}`,
|
|
matomoUrl: `${matomoUrl}`,
|
|
localScript: '/piwik.js',
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-svgr',
|
|
options: {
|
|
icon: false,
|
|
viewBox: true,
|
|
// see https://github.com/smooth-code/svgr for a list of all options
|
|
},
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-favicon',
|
|
options: {
|
|
logo: './src/images/favicon.png',
|
|
injectHTML: true,
|
|
icons: {
|
|
android: true,
|
|
appleIcon: true,
|
|
appleStartup: false,
|
|
coast: false,
|
|
favicons: true,
|
|
firefox: true,
|
|
twitter: false,
|
|
yandex: true,
|
|
windows: true,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
}
|