일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- setInterval 중지
- setInterval clear
- pm2 설치
- DatePicker
- invalid data
- mosquitto
- 서버동기화
- pm2 상태 확인
- html #select #option #multiple
- DataGridView 직접 입력
- pm2 확인
- datagridview 직접입력
- c# datagridview 데이터 넣기
- timepicker
- pm2 시작
- 데이터테이블 데이터 넣기
- setInterval 정지
- Replication
- listener 1883
- mySQL_Replication
- mosquitto.conf
- transfer
- 맥 어드레스
- 1883
- pm2
- AntDesign
- map이 undefined가 뜰 때
- setInterval 외부 정지
- 공인IP
- allow_anonymouse
- Today
- Total
목록React (98)
개발 노트
입력받은 문자열을 가져오는 부분(antd 이용)// components/translate/LanguageSelector.tsximport { Select } from 'antd';interface LanguageOption { label: string; value: string; src: string;}interface LanguageSelectorProps { onChange: (value: string) => void; value: string | undefined;}const languages: LanguageOption[] = [ { label: "Korea", value: "ko", src: "https://flagcdn.com/h60/kr.png" }, { label: "Engli..
https://hotsunchip.tistory.com/13 [Next.js 14] App router 기반 Localization / Internationalization [i18next]다국어를 지원하는 웹에 들어가보면 드롭다운으로 언어를 바꾸고, 그에 맞게 텍스트가 휙휙 바뀌는 것을 본 적이 있을 것이다. 이번 포스팅에서는 i18next 모듈을 이용해서 앱 라우터 기반의 Next.jhotsunchip.tistory.com https://hotsunchip.tistory.com/27 [Next.js 14] Google SpreadSheets를 이용한 다국어 지원 서비스 자동화 및 발생한 오류 해결 방법 정리 [i1얼마 전(?)에 작성한 App router 기반 Localization 기능을 자동화하기..
https://m.blog.naver.com/s0215hc/222392725370 [script] 구글 번역을 이용한 간단한 다국어 페이지 만들기구글 번역을 이용한 간단한 다국어 페이지 적용 방법입니다. 복잡한 문장이거나 정확한 번역이 필요한 사이...blog.naver.com https://www.w3schools.com/howto/howto_google_translate.asp W3Schools.comW3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL..
next.js공식 문서https://nextjs.org/docs/app/building-your-application/routing/route-handlers#url-query-parameters Routing: Route Handlers | Next.jsCreate custom request handlers for a given route using the Web's Request and Response APIs.nextjs.org 적용예시https://dev.to/lakshmananarumugam/advanced-nextjs-url-handling-with-urlsearchparams-2gp3?utm_source=oneoneone Advanced Next.js URL handling with URL..
https://velog.io/@andy99/Next.js-App-Router-Data-Fetching2 Next.js App Router - Data Fetching(2)What is Next.js?velog.io> 공식홈페이지 번역 및 설명해놓은 자료
문제 원인 : next build 시에 typeError fetch failed가 발생하면서 빌드 실패 해결방법: 동적으로 배포해야할 부분에 다음 코드 추가하기 export const dynamic = "force-dynamic"; 참고 https://kyechan99.github.io/post/memo/nextjs-fetch-failed Next.js 13 배포시 TypeError fetch failed Error occurred prerendering page, TypeError fetch failed kyechan99.github.io