본문 바로가기

분류 전체보기

(44)
미니멀 라이프 미니멀 라이프 1일 1커밋
[Vue] v-html을 이용해 element를 주입했더니 CSS가 안먹힌다? https://medium.com/@brockreece/scoped-styles-with-v-html-c0f6d2dc5d8e Scoped styles with v-html Scoped css is awesome and I strongly encourage its use when building reusable components. It stops the css rules of your component bleeding… medium.com style 태그에 scoped 속성이 들어가 생긴 문제로 자세한 내용은 위 블로그를 참고, 해결 방법은 1. scoped를 지운다 2. 스타일을 주려고 하는 선택자 앞에 >>> 를 넣어준다
[React] Deploy React App on github Create React App (이하 CRA)로 만들 어플리케이션을 github에 배포해보자. 프로젝트 루트 폴더로 이동한다. 그리고 아래 명령어로 빌드를 해준다. npm run build 빌드를 성공하면 위 메제시를 확인 할 수 있다. (warning이 있다면 위 메세지가 표시되지 않을 수 있다. warning을 모두 제거하고 다시 빌드를 한다) package.json에 homepage를 작성한다. "homepage" : "http://myname.github.io/myapp" myname에는 github 이름을 myapp에는 repository 이름을 넣어준다. (tip, github 이름을 확인하는 방법으로 $git config --list 를 입력하면 git 설치 후 입력한 username과 em..
[GIT] A branch name 'gh-pages' already exists node_modules 폴더의 gh-pages를 지우고 다시 인스톨해주면 문제가 없어진다. 정확인 문제가 있는 부분은 node_modules/gh-pages/.cache 폴더이다.
[GIT] HttpRequestException encountered & Could not read Username for... 위와 같은 메세지가 출력된다면, 2가지를 확인해보자. 1. username이 config에 등록되어 있는지 확인 git config --list 2. git 버전을 최신으로 설치 본인은 2번이 문제였으며, 2.15버전을 사용하고 있었다. 2.23 버전으로 업데이트 하니 문제가 사라졌다. Bug Fixes Cleaned and hardened the interaction with the Windows Credential Manager. To install the Git Credential Manager, download and double-click the GCMW-1.14.0.exe installer. It is that easy, it will even install Git for Windows 2.1..
[HTML / CSS] 마진 겹침 현상 해결 방법으로는 요소에 display: inline-block을 주면 된다.
Cannot read property ‘match’ of undefined in NPM package-lock.json 파일 제거 node_modules 폴더 제거 npm install
[React] Rest operation VS Spread operation 리액트를 공부하다보면 아래오 같은 코드를 자주 접할 수 있을 것이다. import React from 'react'; import './style.css'; const Button = ({ children, loading, ...props }) => ( {loading ? 'loading...' : children} ); Button.defaultProps = { loading: false, }; export default Button; Button 이라는 컴포넌트를 만들고 props를 받아서 처리하고 있다. 우리가 주목해야 할 것은 . . . 이다. (이하, 닷닷닷) 정답부터 말하면, 첫 번째로 쓰인 ({ children, loading, ...props }) 이곳에서 닷닷닷은 Rest operatio..