게시글
질문&답변
안녕하세요! 몇가지 질문드려요!
안녕하세요! gatsby clean를 하고 다시 build를 했는데 마찬가지로 아래와 같이 sitemap 폴더에 두 개로 나뉘어 생성됩니다. ㅜㅜ (사진) 위 댓글에 gatsby-config 파일을 올렸습니다. 혹시 봐주실 수 있을까요? 부탁드립니다. ㅜㅜㅜ 구글링해도 잘 안나오네요 ㅠㅠ
- 1
- 4
- 695
질문&답변
안녕하세요! 몇가지 질문드려요!
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', }, }, ], }, }, ], };
- 1
- 4
- 695
질문&답변
The editor has crashed라는 에러창이 뜨는데 어떻게 해야하나요...??
감사합니다. 재설치를 하니 해결됬습니다.강의를 반이상 오면서 얻어가는게 많습니다.혹시 강사님의 다른 강의가 있을까요? 이강의가 끝나고 강사님의 다른강의도 듣고 싶은데요어느새 강사님의 말투와 스타일이 익숙해져 있어서요python 말고도 컴퓨터 관련 다른 강의가 있다면 알려주시면 감사하겠습니다.
- 1
- 2
- 648