mirror of
https://github.com/Unkn0wnCat/Unkn0wnCat.net.git
synced 2025-05-10 23:46:55 +02:00
Initialize Nextgen Page
This commit is contained in:
parent
721bd58bfc
commit
d3d5d0bd56
21 changed files with 11293 additions and 0 deletions
37
gatsby-config.ts
Normal file
37
gatsby-config.ts
Normal file
|
@ -0,0 +1,37 @@
|
|||
import type { GatsbyConfig } from "gatsby";
|
||||
|
||||
const config: GatsbyConfig = {
|
||||
siteMetadata: {
|
||||
title: `Unkn0wnCat.net`,
|
||||
siteUrl: `https://www.yourdomain.tld`,
|
||||
},
|
||||
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
|
||||
// If you use VSCode you can also use the GraphQL plugin
|
||||
// Learn more at: https://gatsby.dev/graphql-typegen
|
||||
graphqlTypegen: true,
|
||||
plugins: [
|
||||
"gatsby-plugin-sass",
|
||||
"gatsby-plugin-image",
|
||||
"gatsby-plugin-mdx",
|
||||
"gatsby-plugin-sharp",
|
||||
"gatsby-transformer-sharp",
|
||||
{
|
||||
resolve: "gatsby-source-filesystem",
|
||||
options: {
|
||||
name: "images",
|
||||
path: "./src/images/",
|
||||
},
|
||||
__key: "images",
|
||||
},
|
||||
{
|
||||
resolve: "gatsby-source-filesystem",
|
||||
options: {
|
||||
name: "pages",
|
||||
path: "./src/pages/",
|
||||
},
|
||||
__key: "pages",
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default config;
|
Loading…
Add table
Add a link
Reference in a new issue