Posts
Q&A
์๋ ํ์ธ์! ๋ช๊ฐ์ง ์ง๋ฌธ๋๋ ค์!
์๋ ํ์ธ์! gatsby clean๋ฅผ ํ๊ณ ๋ค์ build๋ฅผ ํ๋๋ฐ ๋ง์ฐฌ๊ฐ์ง๋ก ์๋์ ๊ฐ์ด sitemap ํด๋์ ๋ ๊ฐ๋ก ๋๋์ด ์์ฑ๋ฉ๋๋ค. ใ ใ (์ฌ์ง) ์ ๋๊ธ์ gatsby-config ํ์ผ์ ์ฌ๋ ธ์ต๋๋ค. ํน์ ๋ด์ฃผ์ค ์ ์์๊น์? ๋ถํ๋๋ฆฝ๋๋ค. ใ ใ ใ ๊ตฌ๊ธ๋งํด๋ ์ ์๋์ค๋ค์ ใ ใ
- Likes
- 1
- Comments
- 4
- Viewcount
- 796
Q&A
์๋ ํ์ธ์! ๋ช๊ฐ์ง ์ง๋ฌธ๋๋ ค์!
module.exports = { siteMetadata: { title: 'DevWhkang Blog', description: '์๋ ํ์ธ์ ์ฃผ๋์ด ๊ฐ๋ฐ์ ๊ฐ์ํ ๋ธ๋ก๊ทธ์ ๋๋ค.', author: 'DevWhkang', siteUrl: 'https://devwhkang.gatsbyjs.io', }, plugins: [ { resolve: 'gatsby-plugin-robots-txt', options: { host: 'https://devwhkang.gatsbyjs.io', sitemap: 'https://devwhkang.gatsbyjs.io/sitemap/sitemap-index.xml', policy: [{ userAgent: '*', allow: '/' }], }, }, { resolve: 'gatsby-plugin-canonical-urls', options: { siteUrl: 'https://devwhkang.gatsbyjs.io', stripQueryString: true, }, }, 'gatsby-plugin-sitemap', { resolve: 'gatsby-plugin-typescript', options: { isTSX: true, allExtensions: true, }, }, `gatsby-plugin-emotion`, `gatsby-plugin-react-helmet`, { resolve: `gatsby-source-filesystem`, options: { name: `contents`, path: `${__dirname}/contents`, }, }, { resolve: `gatsby-source-filesystem`, options: { name: `images`, path: `${__dirname}/static`, }, }, `gatsby-transformer-sharp`, `gatsby-plugin-sharp`, { resolve: `gatsby-transformer-remark`, options: { plugins: [ { resolve: 'gatsby-remark-smartypants', options: { dashes: 'oldschool', }, }, { resolve: 'gatsby-remark-prismjs', options: { classPrefix: 'language-', }, }, { resolve: 'gatsby-remark-images', options: { maxWidth: 768, quality: 100, withWebp: true, loading: 'lazy', }, }, { resolve: 'gatsby-remark-copy-linked-files', options: {}, }, { resolve: 'gatsby-remark-external-links', options: { target: '_blank', rel: 'nofollow', }, }, ], }, }, ], };
- Likes
- 1
- Comments
- 4
- Viewcount
- 796
Q&A
The editor has crashed๋ผ๋ ์๋ฌ์ฐฝ์ด ๋จ๋๋ฐ ์ด๋ป๊ฒ ํด์ผํ๋์...??
๊ฐ์ฌํฉ๋๋ค. ์ฌ์ค์น๋ฅผ ํ๋ ํด๊ฒฐ๋ฌ์ต๋๋ค.๊ฐ์๋ฅผ ๋ฐ์ด์ ์ค๋ฉด์ ์ป์ด๊ฐ๋๊ฒ ๋ง์ต๋๋ค.ํน์ ๊ฐ์ฌ๋์ ๋ค๋ฅธ ๊ฐ์๊ฐ ์์๊น์? ์ด๊ฐ์๊ฐ ๋๋๊ณ ๊ฐ์ฌ๋์ ๋ค๋ฅธ๊ฐ์๋ ๋ฃ๊ณ ์ถ์๋ฐ์์ด๋์ ๊ฐ์ฌ๋์ ๋งํฌ์ ์คํ์ผ์ด ์ต์ํด์ ธ ์์ด์์python ๋ง๊ณ ๋ ์ปดํจํฐ ๊ด๋ จ ๋ค๋ฅธ ๊ฐ์๊ฐ ์๋ค๋ฉด ์๋ ค์ฃผ์๋ฉด ๊ฐ์ฌํ๊ฒ ์ต๋๋ค.
- Likes
- 1
- Comments
- 2
- Viewcount
- 727




