mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-15 01:25:25 +01:00
109 lines
2.4 KiB
JavaScript
109 lines
2.4 KiB
JavaScript
const path = require('path')
|
|
const fs = require('fs')
|
|
const yaml = require('js-yaml')
|
|
const meta = yaml.load(fs.readFileSync('./content/meta.yml', 'utf8'))
|
|
const { title, description, url, matomoSite, matomoUrl } = meta
|
|
|
|
module.exports = {
|
|
siteMetadata: {
|
|
siteUrl: `${url}`
|
|
},
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-transformer-yaml',
|
|
options: {
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'content',
|
|
path: path.join(__dirname, 'content')
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-transformer-json',
|
|
options: {
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'pkg',
|
|
path: path.join(__dirname, 'package.json')
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-sass',
|
|
options: {
|
|
includePaths: [`${__dirname}/node_modules`, `${__dirname}/src/styles`]
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'images',
|
|
path: path.join(__dirname, 'src', 'images')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-svgr',
|
|
options: {
|
|
icon: true
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-matomo',
|
|
options: {
|
|
siteId: `${matomoSite}`,
|
|
siteUrl: `${url}`,
|
|
matomoUrl: `${matomoUrl}`,
|
|
localScript: '/piwik.js'
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-favicon',
|
|
options: {
|
|
logo: './src/images/favicon.png',
|
|
|
|
// WebApp Manifest Configuration
|
|
appName: title.toLowerCase(),
|
|
appDescription: description,
|
|
developerName: null,
|
|
developerURL: null,
|
|
dir: 'auto',
|
|
lang: 'en-US',
|
|
background: '#e7eef4',
|
|
theme_color: '#88bec8',
|
|
display: 'minimal-ui',
|
|
orientation: 'any',
|
|
start_url: '/?homescreen=1',
|
|
short_name: 'mk',
|
|
version: '1.0',
|
|
|
|
icons: {
|
|
android: true,
|
|
appleIcon: true,
|
|
appleStartup: true,
|
|
coast: false,
|
|
favicons: true,
|
|
firefox: true,
|
|
opengraph: false,
|
|
twitter: false,
|
|
yandex: false,
|
|
windows: false
|
|
}
|
|
}
|
|
},
|
|
'gatsby-plugin-react-helmet',
|
|
'gatsby-transformer-sharp',
|
|
'gatsby-plugin-sharp',
|
|
'gatsby-plugin-sitemap',
|
|
'gatsby-plugin-offline'
|
|
]
|
|
}
|