mirror of
https://github.com/cat-milk/Anime-Girls-Holding-Programming-Books.git
synced 2026-03-23 00:57:27 +00:00
feat(webviewer): Started webview work
This commit is contained in:
40
webviewer/gatsby-config.js
Normal file
40
webviewer/gatsby-config.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/** @type {import('gatsby').GatsbyConfig} */
|
||||
module.exports = {
|
||||
siteMetadata: {
|
||||
title: ``,
|
||||
siteUrl: `https://www.yourdomain.tld`,
|
||||
},
|
||||
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',
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user