TailwindCSS) default font size 바꾸기, variable, shadow customizing, custom font
2022. 10. 20. 00:53
카테고리 없음
default, base font size 바꾸기 default 폰트사이즈는 16px이다. 전체를 바꾸려면? _app.tsx에 들어가서 여기를 바꿔준다 variable 추가 tailwind.config.js에 들어가서 추가 shadow customizing shadow-[0_0px_13px_4px_rgba(224,224,224,1)] _를 추가해서 위처럼 적기 참고 사이트 그림자 커스텀 마이징 사이트 https://html-css-js.com/css/generator/box-shadow/ rgba 변환 https://coding.tools/kr/hex-to-rgba custom font, 폰트 추가, font add 참고 영상 https://www.youtube.com/watch?v=5xDVP02g9WQ..
Vercel) production과 develop branch 같이 배포되는 이유
2022. 10. 20. 00:25
git & 배포/Deploy(AWS 등)
production에 배포되기 전에 staging 브랜치처럼 테스트하라고 같이 배포해준다
React)`"` can be escaped with `"`, `“`, `"`, `”`. react/no-unescaped-entities react/no-unescaped-entities 에러
2022. 10. 20. 00:12
Frontend/React & React.Native &Next.js
"" 대신에 ""와(과) 일치하는 검색결과가 없습니다. 이렇게 해야한다
TypeScript) 간단 경로(path) 설정
2022. 10. 19. 19:49
Frontend/React & React.Native &Next.js
tsConfig.json { "compilerOptions": { "target": "es5", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "forceConsistentCasingInFileNames": true, "noEmit": true, "esModuleInterop": true, "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", "incremental": true, "baseUrl":".", "paths":{..