묻고 답해요
141만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결언리얼 엔진4 입문 (C++ 기반)
언리얼엔진 VisualStudio build 오류
안녕하세요. 유니티vs언리얼 강의를 들으며 이제 프로젝트 내에 C++ 코드를 처음 작성하고 있던 중이었습니다. 그런데 이제 코드를 동일하게 작성하고 빌드를 눌렀는데 아래와 같은 오류가 나옵니다. 코드를 잘못 따라친건가 싶어서 아예 새 C++ 파일을 생성해 빌드를 해봐도 위와 동일한 오류가 나옵니다. 구글에도 찾아보고 해결 방법을 찾아보고 있기는 한데 , 혹시 오류의 원인을 알 수 있을까 해서 질문을 올립니다. 언리얼 버전은 5.2입니다.비쥬얼스튜디오 버전은 2022 입니다.
-
미해결React + API Server 프로젝트 개발과 배포 (CI/CD)
빌드 오류
======CMD====== 19./deploy.sh 20======END====== 212023/03/05 13:19:14 Process exited with status 127 22err: bash: ./deploy.sh: No such file or directorydeploy.sh 파일이 없다고 하는 것 같은데 확인해보면 잘 존재해 있습니다.#!/bin/bash source ~/.bash_profile cd ~/git/backfront/ git pull origin main cd frontend/ npm i npm run build cp -rf dist/* ../backend/public cd ../backend/ npm i pm2 stop web pm2 start bin/www --name web --update-env sleep 2 pm2 list 도와주십시오ㅠ
-
해결됨[2024 최신] [코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!
플러터 aab 빌드 오류
오류 Error: Cannot run with sound null safety, because the following dependencies don't support null safety: - package:flutter_swiper - package:flutter_page_indicator - package:transformer_page_view For solutions, see https://dart.dev/go/unsound-null-safety 빌드를 하면 이렇게 나옵니다. 안드로이드스튜디오 => RUN=> EDIT CONFIGURATIONS... => additional run args: --no-sound-null-safety 이미 적혀 있습니다 . 그래도 오류가 발생하는데 어떻게 해결해야하나요?
-
미해결React 기반 Gatsby로 기술 블로그 개발하기
"siteMetadata.siteUrl" must be a valid uri 에러
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`, ], }, }, ], }