diff options
author | 2024-04-29 00:14:03 +0100 | |
---|---|---|
committer | 2024-04-29 00:14:03 +0100 | |
commit | 7f6481f2e9efff1817b3e4daae9292396a8adb91 (patch) | |
tree | 493fa3bcf816bc1258627258de2329737ce3bf30 | |
parent | Change homepage title (diff) |
Fill in domain in Gatsby config
-rw-r--r-- | gatsby-config.ts | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gatsby-config.ts b/gatsby-config.ts index ff96e6f..3b74b94 100644 --- a/gatsby-config.ts +++ b/gatsby-config.ts @@ -3,7 +3,7 @@ import type { GatsbyConfig } from "gatsby"; const config: GatsbyConfig = { siteMetadata: { title: `PyDis Ops`, - siteUrl: `https://www.yourdomain.tld` + siteUrl: `https://ops.pydis.wtf` }, // 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 @@ -15,20 +15,20 @@ const config: GatsbyConfig = { "icon": "src/images/icon.png" } }, "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" - }] + 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; |