Vite의 polyfill은 vue-tsc와 별도로 동작한다
Vite의 자동 폴리필과 vue-tsc의 타입 체크는 완전히 따로 논다.
Vite의 자동 폴리필과 vue-tsc의 타입 체크는 완전히 따로 논다.
Vite’s automatic polyfilling and vue-tsc’s type checking operate completely independently of each other.
1. vitest 설정
1. vitest configuration
2023.04.06. v0.151.3 기준으로 Three.js의 버전이 올라가면서 더이상 THREE.RGBFormat API를 사용할 수 없게 되었다.
As of 2023.04.06, with the version bump in Three.js to v0.151.3, the THREE.RGBFormat API can no longer be used.
HTML video tag의 onTimeUpdate 프로퍼티에 박히는 콜백은 가장 느릴 경우 250ms 마다 1회 동작한다.
The callback attached to the onTimeUpdate property of the HTML video tag fires, at its slowest, once every 250ms.
S3의 lastModified는 사용자가 변경할 수 없다. 이것은 S3의 사용 제한 사항이다(기능이다).
S3’s lastModified cannot be changed by the user. This is a usage restriction of S3 (it’s a feature).
소스 코드를 압축할 때 .git 디렉토리나 node_modules을 포함할 필요는 없다. 제외하자.
When you compress source code, there’s no need to include the .git directory or node_modules. Let’s exclude them.
QueryCache에서 error response body를 캐싱하지 않도록 하자.
Let’s make the QueryCache stop caching error response bodies.
react-query의 useQuery는 state 저장소의 역할을 할 수 있다. useQuery의 return값은 어느 컴포넌트에서 조회하든 같은 값을 반환한다.
react-query’s useQuery can play the role of a state store. The return value of useQuery returns the same value no matter which component queries it.
react-query에서 특정 mutation을 수행하고, mutation이 완료될 경우 특정 함수를 실행하려면 어떻게 해야할까? react-query는 mutation을 수행할 때마다 mutationCache를 update한다. 따라서 mutationCache의 변경을 subsc...
In react-query, how do you run a specific function once a particular mutation has been performed and completed? react-query updates the mutationCache every t...