"siteMetadata.siteUrl" must be a valid uri 에러
537
작성한 질문수 3
ERROR #10122 CONFIG
The site's gatsby-config.js failed validation:
"siteMetadata.siteUrl" must be a valid uri
not finished open and validate gatsby-configs, load plugins - 0.030s
빌드시 이런오류가 발생하는데, 로컬주소로 바꿔도 오류가 나더라구요... 어떤 방식으로 유효성을 체크하는 걸까요?
module.exports = {
siteMetadata: {
title: `철진난만한 혜심의 블로그`,
description: `주니어 개발자 혜심의 블로그입니다.`,
author: `Haesim`,
siteUrl: '<https://my-website-link.com>', // 배포 후 변경 예정
},
plugins: [
{
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`,
},
},
`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,
},
},
{
resolve: 'gatsby-remark-copy-linked-files',
options: {},
},
{
resolve: 'gatsby-remark-external-links',
options: {
target: '_blank',
rel: 'nofollow',
},
},
{
resolve: `gatsby-plugin-sharp`,
options: {
defaults: {
formats: ['auto', 'webp'],
quality: 100,
placeholder: 'blurred',
},
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `contents`,
path: `${__dirname}/contents`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/static`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `contents`,
path: `${__dirname}/contents`,
},
},
{
resolve: 'gatsby-plugin-canonical-urls',
options: {
siteUrl: '<https://my-website.com/>',
stripQueryString: true,
},
},
'gatsby-plugin-sitemap',
`gatsby-transformer-sharp`,
`gatsby-plugin-image`,
],
},
},
],
}
답변 2
쿼리오류 Field "thumbnail" must not have a selection...
1
872
1
타입스크립트를 설정할 때 jsxPragma 옵션을 뺀 이유는 무엇인가요?
1
605
1
마지막 배포 부분 질문드립니다!
1
623
1
'[username]/[username].github.io' -> 'username/reponame'
0
344
0
IntersectionObserver deploy( gatsby build) 시 오류(자답)
1
399
1
PostHead.tsx BackgroundImage 동작오류(자답)
1
296
0
19강 인피니티 스크롤 IntersectionObserver 코드 위치 수정이 필요합니다.
1
411
1
썸네일 이미지 제작 및 학습 방법 관련 문의
1
446
1
배포 후 포스트 업로드 방법
1
386
1
배포 질문이요!
1
528
1
gatsby develop 오류
1
940
1
깃허브 레퍼지토리 질문드려요
1
344
1
특정 게시글을 클릭하여 상세 페이지로 넘어가는 과정과 SPA에 관한 질문
1
285
1
Unhandled Runtime Error 가 뜹니다
0
506
2
sign in with GitHub 클릭 시
1
394
3
동작 반복 시 오류
1
351
2
const BackgroundImage 질문
1
212
1
오타 문의
1
305
2
Props로 받아 포스트 데이터 출력하기가 안됩니다.
1
203
1
index.tsx allMarkdownRemark 에러..
0
595
2
스네이크 케이스로 변수명을 짓는 이유
1
251
1
'Tagged Template Literal 방식을 통해 정의한 CSS 적용 방법'에서 발생하는 문제
3
353
2
상단 이미지를 썸네일 사용하지않고 다른 이미지를 쓰고싶습니다
1
284
1
여기까지 했는데 runtime 에러가 발생합니다
2
285
1





