소개
게시글
질문&답변
2024.02.16
@types/react를 인식하지 못하는 에러
저도 따라하다가,react version 18로 설치했는데 잘 되어서 그렇게 사용하고 있습니다 (v17로는 최신버전이나 이런 저런 버전조합을 해봐도 해결책을 못 찾았습니다) "dependencies": { "@chakra-ui/react": "^2.8.2", "@emotion/react": "^11.11.3", "@emotion/styled": "^11.11.0", "firebase-admin": "^12.0.0", "framer-motion": "^11.0.5", "next": "^12.0.7", "react": "^18.2.0", "react-dom": "^18.2.0", "styled-components": "^5.3.3" }, "devDependencies": { "@types/node": "^16.11.13", "@types/react": "^18.2.55", "@types/styled-components": "^5.1.18", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "babel-eslint": "^10.1.0", "babel-plugin-styled-components": "^2.0.2", "eslint": "^8.52.0",
- 0
- 3
- 2.2K
질문&답변
2024.02.13
사용하시는 zsh 테마가 뭐예요?
소스코드 주소는 여기https://github.com/totuworld/blahx2/tree/start
- 0
- 2
- 334
질문&답변
2022.07.22
한글폰트가 깨집니다
For 아이패드 사용자 저는 출퇴근길에 아이패드에서 보다보니 환경이 조금 달랐습니다. 비슷한 경우가 있었는데 아래처럼 아이패드 기본 폰트로 설정하니 됐어요. def get_font_family(): """ 시스템 환경에 따른 기본 폰트명을 반환하는 함수 """ import platform system_name = platform.system() # colab 사용자는 system_name이 'Linux'로 확인 if system_name == "Darwin" : # font_family = "AppleGothic" font_family = "Apple SD Gothic Neo" elif system_name == "Windows": font_family = "Malgun Gothic" else: # Linux # colab에서는 runtime을 재시작 해야합니다. # 런타임을 재시작 하지 않고 폰트 설치를 하면 기본 설정 폰트가 로드되어 한글이 깨집니다. !apt-get update -qq !apt-get install fonts-nanum -qq > /dev/null import matplotlib.font_manager as fm fontpath = '/usr/share/fonts/truetype/nanum/NanumBarunGothic.ttf' font = fm.FontProperties(fname=fontpath, size=9) fm._rebuild() font_family = "NanumBarunGothic" return font_family
- 2
- 2
- 1.3K