이슈 기록
-
NestJs @CacheTTL() not working이슈 기록 2023. 3. 12. 11:39
개발 버전 nestjs : 9 version cache-manager : 5 version 에러 발생 코드 import { CacheModule, Module } from '@nestjs/common'; ... @Module({ ... }) export class UserModule {} @CacheTTL(4) @Get() @UseInterceptors(CacheInterceptor) ... findAll( ... ) { ... } 에러 내용 @CacheTTl 데코레이터에 설정한 시간이 재대로 동작하지 않는다. 원인 네스트 9 버전은 cache-manager 5 버전과 재대로 호환되지 않음 해결 방법 cache-manager을 4 버전으로 다운그레이
-
aws codeDeploy beforeInstall fail이슈 기록 2023. 2. 5. 14:33
``` The overall deployment failed because too many individual instances failed deployment, too few healthy instances are available for deployment, or some instances in your deployment group are experiencing problems. ``` ``` CodeDeploy agent was not able to receive the lifecycle event. Check the CodeDeploy agent logs on your host and make sure the agent is running and can connect to the CodeDepl..
-
nestjs cli new npm install --slient 에러이슈 기록 2023. 1. 23. 18:33
[case - 1] Failed to execute command: yarn install --silent In case you don't see any errors above, consider manually running the failed command yarn install to see more details on why it errored out. [case - 2] npm i -> idealTree 에서 멈춤 인터넷을 검색하니 node, npm 등 지웠다가 다시 설치하거나 nest-cli를 지웠다가 다시 설치하거나 모든 방법을 다 해봤지만 동일한 에러 발생 원인을 알아보니 kt 통신사를 사용하면 해당 에러가 발생한다고 합니다. 재 핸드폰은 lg 통신사를 사용해서 모바일 와이파이로 연결해서 np..
-
vue bootstrap b-badge b-toast 렌더링 문제이슈 기록 2021. 6. 1. 21:01
대부분의 원인 : npm install vue bootstrap bootstrap-vue 만 해서 그렇다!! 공식문서를 보면 PortalVue v2.1 is required by Toasts, v2.1.7 is recommended Popper.js v1.16 is required for dropdowns (and components based on dropdown), tooltips, and popovers. v1.16.1 is recommended 까지 모듈을 받아줘야 정상적인 렌더링이 된다 npm i bootstrap@4.5.3 npm install --save portal-vue@2.1.7 npm i @popperjs/core 를 해주면 정상 렌더링이 된다
-
vue-bootstrap b-form-group label style이슈 기록 2021. 6. 1. 20:32
b-form-group의 label 사이즈를 sm으로 설정해도 유구 사항보다 font-size가 너무 큰 문제가 발생 font-size를 변경하려고 시도하였으나 일반적인 방법으로는 css가 먹히지 않았다. 우리 회사는 scss를 사용하고 있었고 b-form-group에 class="input-container"를 주어 .input-container { & /deep/ label { font-size: $fontSize-default; } } 로 문제를 해결 해당 문서 https://vue-loader.vuejs.org/guide/scoped-css.html#child-component-root-elements
-
You're caching 'node_modules' but are not caching this path: /home/runner/.cache/Cypress이슈 기록 2021. 4. 20. 21:27
deploy.yml 파일에서 - name: Cache node_modules uses: actions/cache@v1 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.OS }}-build-${{ runner.OS }}- 를 아래 코드로 변경하여 해결 - name: Cache node_modules uses: actions/cache@v2 with: path: | node_modules ~/.cache/Cypress build key: ${{ runner.OS }}-node_modules-build-${{ hashFiles('**/yarn.lock') }..