mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-14 17:15:15 +01:00
90 lines
2.2 KiB
JavaScript
90 lines
2.2 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 resume = require('./content/resume.json')
|
|
const { matomoSite, matomoUrl } = meta[0]
|
|
const { name, website } = resume.basics
|
|
|
|
require('dotenv').config()
|
|
|
|
if (
|
|
!process.env.GATSBY_GITHUB_TOKEN ||
|
|
process.env.GATSBY_GITHUB_TOKEN === 'xxx'
|
|
) {
|
|
throw Error(`
|
|
⚠️ A GitHub token as GATSBY_GITHUB_TOKEN is required to build some parts of the blog.
|
|
⚠️ Check the README https://github.com/kremalicious/portfolio#-development.
|
|
`)
|
|
}
|
|
|
|
module.exports = {
|
|
siteMetadata: {
|
|
siteUrl: `${website}`
|
|
},
|
|
plugins: [
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'content',
|
|
path: path.join(__dirname, 'content')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'images',
|
|
path: path.join(__dirname, 'src', 'images')
|
|
}
|
|
},
|
|
'gatsby-transformer-yaml',
|
|
'gatsby-transformer-json',
|
|
'gatsby-plugin-postcss',
|
|
{
|
|
resolve: 'gatsby-plugin-svgr',
|
|
options: {
|
|
icon: true
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-matomo',
|
|
options: {
|
|
siteId: `${matomoSite}`,
|
|
siteUrl: `${website}`,
|
|
matomoUrl: `${matomoUrl}`,
|
|
localScript: '/piwik.js',
|
|
trackLoad: false
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-manifest',
|
|
options: {
|
|
name: name.toLowerCase(),
|
|
short_name: 'mk',
|
|
start_url: '/',
|
|
background_color: '#e7eef4',
|
|
theme_color: '#e7eef4',
|
|
icon: 'src/images/favicon.png',
|
|
display: 'standalone',
|
|
cache_busting_mode: 'name',
|
|
theme_color_in_head: false // dynamically set in ThemeSwitch
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-plugin-use-dark-mode',
|
|
options: {
|
|
classNameDark: 'dark',
|
|
classNameLight: 'light',
|
|
minify: true
|
|
}
|
|
},
|
|
'gatsby-plugin-react-helmet',
|
|
'gatsby-transformer-sharp',
|
|
'gatsby-plugin-sharp',
|
|
'gatsby-plugin-sitemap',
|
|
'gatsby-plugin-offline',
|
|
'gatsby-plugin-webpack-size'
|
|
// 'gatsby-plugin-webpack-bundle-analyser-v2'
|
|
]
|
|
}
|