일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 자바스크립트#JS#slice#splice
- UI
- 내장고차함수
- cmarket
- dom
- slice/splice/split
- https://lo-victoria.com/introduction-to-redux-toolkit-for-beginners
- https://dasima.xyz/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EC%A0%9C%EA%B3%B1-math-pow-%EA%B3%84%EC%82%B0/
- UX
- JS#3일차달리자#초반인데#시간금방~
- 노드교과서
- 헷갈린다~
- https://developer-talk.tistory.com/299
- Beesbeesbees
- toString#String
- 자바스크립트#조건문#문자열
- 자바스크립트
- children vs childrenNodes
- CSS
- 자바스크립트#JS#var#let#const#undefined#null
- for~in/for~of
- removeCookie
- @redux-toolkit
- https://www.daleseo.com/js-array-slice-splice/
- react
- js
- ㄷㅌ
- variable#function
- redux상태유지
- User Flow
- Today
- Total
목록분류 전체보기 (161)
Daily Front_Minhhk
$ git config --global user.name "Min-hh-k" $ git config --global user.email alszn2222@gmail.com 이렇게 사용해줘서 전역으로 name, email 을 설정하자.. 지역으로 폴더에만 따로 적용 해주고 싶다면 --global을 제외한 뒤, 아래와 같이 폴더 루트에서 저렇게 해주자. $ git config user.name "Min-hh-k" $ git config user.email alszn2222@gmail.com 입사 한 뒤,, 한참 빡시게 리뉴얼 프로젝트 한다고 커밋 많이 했는데... 남지가 않았다ㅋㅋ 회사 맥북으로 개발했는데, global에 이전 사용자 이름과 이메일이 등록 되어 있어서 그대로 그냥 했다~ 만들고 배포 하기에 ..
보호되어 있는 글입니다.
npm i -D @types/react-pdf react-pdf Display PDFs in your React app as easily as if they were images.. Latest version: 7.2.0, last published: 5 days ago. Start using react-pdf in your project by running `npm i react-pdf`. There are 632 other projects in the npm registry using react-pdf. www.npmjs.com ./node_modules/canvas/build/Release/canvas.node Module parse failed: Unexpected character ' ' (1:..
작업 도중, 동료와 함께 next.js 에서 각 페이지의 폴더명이 대문자 || 소문자 섞여있어서 소문자로 통일 하자는 의견에 따라 변경해서 올리고, 합쳐진 브랜치에서 pull 을 받았더니 동료쪽에서 에러가 무지하게 떴다. 대소문자의 에러.. git은 파일명 또는 폴더명의 대소문자를 구분하지 못함 >> git 설정에서 대소문자 무시말라고 설정하면 됨! 우선 터미널에 아래의 명령어를 쳐서 무시하지 않게 적용하자 git config core.ignorecase false 그리고, 파일명을 변경한 뒤 commit > push 를 해보자!! 그리고 변경된 폴더에 캐싱된 파일이 있다고 에러메시지가 뜬다면 아래와 같은 명령어를 적용!! 캐시를 없앤 뒤, 다시 push 를 하면 될 것이다! git rm -r --cac..
commit 후 push 할려고 할 때, 동료가 설치한 라이브러리와 충돌이 일어났다. package-lock.json지우고 다시 npm i 해서 git push origin ~~ 해보자!! npm 또는 Node.js 버전과 소스를 올린 사람의 버전이 달라서 그렇다고 한다. npm install 할 때 예외가 발생될 때 COTHE의 기술 블로그 thecodinglog.github.io
빌드에서 Storage 를 눌러 생성! 스토리지 위치는 당연 서울! 공식문서를 살펴보자 (Storage) firebase.js 파일에서 const storage = getStorage(app) import { initializeApp } from "firebase/app"; import { getStorage } from "firebase/storage"; // TODO: Replace the following with your app's Firebase project configuration // See: https://firebase.google.com/docs/web/learn-more#config-object const firebaseConfig = { // ... storageBucket: ''..