Skip to content

Commit

Permalink
Feat/seo favicon title (#16)
Browse files Browse the repository at this point in the history
* [feat]: favicon add , title fix

* [feat]: applyContentInfo error handling

---------

Co-authored-by: winju <[email protected]>
  • Loading branch information
VictoryJu and winju authored May 29, 2024
1 parent 9edaa23 commit 10c846b
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 511 deletions.
27 changes: 12 additions & 15 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
@@ -1,32 +1,23 @@
import type { GatsbyConfig } from "gatsby";
import path from "path";
import type { GatsbyConfig } from 'gatsby';
import path from 'path';

require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});


const config: GatsbyConfig = {
siteMetadata: {
title: `Lending`,
siteUrl: `https://www.yourdomain.tld`,
title: `몽글`,
siteUrl: `https://mgmg.life`,
description: `빠르고 확실한 반려견 출장 목욕 서비스`,
},
// 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-sharp',
{
resolve: 'gatsby-plugin-root-import',
options: {
root: path.join(__dirname, 'src'),
},
},
{
resolve: "gatsby-plugin-sharp",
resolve: 'gatsby-plugin-sharp',
options: {
defaults: {
formats: [`auto`, `webp`],
Expand Down Expand Up @@ -64,6 +55,12 @@ const config: GatsbyConfig = {
},
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
icon: 'src/images/icon.png',
},
},
],
};

Expand Down
Loading

0 comments on commit 10c846b

Please sign in to comment.