Files
anime-girls-holding-program…/webviewer/gatsby-config.js
2022-09-25 20:05:16 -05:00

42 lines
973 B
JavaScript

/** @type {import('gatsby').GatsbyConfig} */
module.exports = {
siteMetadata: {
title: `Anime Girls Holding Programming Books`,
siteUrl: `https://www.yourdomain.tld`,
pathPrefix: '/Anime-Girls-Holding-Programming-Books/',
},
plugins: [
'gatsby-plugin-postcss',
'gatsby-plugin-image',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
'gatsby-plugin-mdx',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `..`,
ignore: [
'**/.*',
'../**/node_modules/**',
'../node_modules/**',
'**/webviewer/**',
'**/README.md',
'**/CONTRIBUTING.md',
],
},
__key: 'images',
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: './src/pages/',
},
__key: 'pages',
},
],
};