일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JS#3일차달리자#초반인데#시간금방~
- cmarket
- for~in/for~of
- @redux-toolkit
- removeCookie
- https://developer-talk.tistory.com/299
- redux상태유지
- Beesbeesbees
- variable#function
- children vs childrenNodes
- react
- UI
- 자바스크립트
- 헷갈린다~
- toString#String
- https://lo-victoria.com/introduction-to-redux-toolkit-for-beginners
- 자바스크립트#조건문#문자열
- UX
- ㄷㅌ
- slice/splice/split
- js
- 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/
- 노드교과서
- dom
- User Flow
- 내장고차함수
- https://www.daleseo.com/js-array-slice-splice/
- CSS
- 자바스크립트#JS#var#let#const#undefined#null
- 자바스크립트#JS#slice#splice
- Today
- Total
목록전체 글 (172)
Daily Front_Minhhk
보호되어 있는 글입니다.
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: ''..
자동 컴파일 // tsc --init , 타입스크립트 프로젝트 최초 한번 실행 // tsc -w === tsc --watch tsconfig.js exclude || include 로 파일 지정 할 수있음! "target" : "es6" 나 최신버전으로 변경 가능! { "compilerOptions": { /* Basic Options */ "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonj..