@@ -2,38 +2,38 @@ import type { GatsbyConfig } from "gatsby";
22
33const config : GatsbyConfig = {
44 siteMetadata : {
5- title : `SethDev ` ,
6- siteUrl : `https://www.yourdomain.tld `
5+ title : `sethdev.ca ` ,
6+ siteUrl : `https://sethdev.ca `
77 } ,
88 // More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
99 // If you use VSCode you can also use the GraphQL plugin
1010 // Learn more at: https://gatsby.dev/graphql-typegen
1111 graphqlTypegen : true ,
12- plugins : [ {
13- resolve : ' gatsby-plugin-google-analytics' ,
14- options : {
15- "trackingId" : "G-WNKWL8CYP9"
16- }
17- } , "gatsby-plugin-image" , "gatsby-plugin-react-helmet" , "gatsby-plugin-sitemap" , {
18- resolve : 'gatsby-plugin-manifest' ,
19- options : {
20- "icon" : "src/images /icon.png"
21- }
22- } , "gatsby-plugin-mdx" , "gatsby-plugin-sharp" , "gatsby-transformer-sharp" , {
23- resolve : 'gatsby-source-filesystem' ,
24- options : {
25- "name" : "images" ,
26- "path" : "./src/images /"
27- } ,
28- __key : "images"
29- } , {
30- resolve : 'gatsby-source-filesystem' ,
31- options : {
32- "name" : "pages" ,
33- "path" : "./src/pages/"
34- } ,
35- __key : "pages"
36- } ]
12+ plugins : [
13+ " gatsby-plugin-postcss" ,
14+ //"gatsby-plugin-google-gtag",
15+ "gatsby-plugin-image" ,
16+ "gatsby-plugin-sitemap" ,
17+ {
18+ resolve : 'gatsby-plugin-manifest' ,
19+ options : {
20+ "icon" : "src/assets /icon.png"
21+ }
22+ } , "gatsby-plugin-mdx" , "gatsby-transformer-remark ", "gatsby-plugin-sharp" , "gatsby-transformer-sharp" , {
23+ resolve : 'gatsby-source-filesystem' ,
24+ options : {
25+ "name" : "images" ,
26+ "path" : "./src/assets /"
27+ } ,
28+ __key : "images"
29+ } , {
30+ resolve : 'gatsby-source-filesystem' ,
31+ options : {
32+ "name" : "pages" ,
33+ "path" : "./src/pages/"
34+ } ,
35+ __key : "pages"
36+ } ]
3737} ;
3838
3939export default config ;
0 commit comments