You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Anime-Girls-Holding-Program.../webviewer/gatsby-config.js

42 lines
973 B

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