typescript

카테고리 없음

[Nextron] Nextron 설치 및 실행하기 (with typescript)

Nextron이란? Nextron = Electron + Next.js Electron : 모바일 환경에서 실행되는 앱을 데스크탑 환경에서 개발하고자 할 때 사용하는 플랫폼 Next.js : React의 SSR(Server Side Rendering)을 쉽게 구현할 수 있게 도와주는 프레임워크 Nextron 설치 Nextron 설치는 아래 링크를 참고하면된다. Nextron github 주소 : https://github.com/saltyshiomix/nextron github에 보면 여러 Nextron 설치 예시가 있는데 나는 typescript와 antd-design을 같이 사용할 것이기 때문에 npx create-nextron-app chat-app --example basic-typescript ..

next.js

styled-component 설정 및GlobalStyle과 ThemeProvider 적용하기 with typescript

Next.js로 프로젝트진행중 styled-component 설정 및GlobalStyle과 ThemeProvider을 적용해 보려고 한다. Styled-component 사용하기 1. 설치 // 기본 styled-components yarn add styled-components @types/styled-components // 문자열 안에 스타일 들어가는 것 처리를 위한 설치 yarn add -dev babel-plugin-styled-components //전역 스타일링에서 이용하기 위함 yarn add styled-reset 2. 초기세팅 style 구조 ├── styles │ ├── global-styles.ts # reset 또는 공통적으로 사용하는 css │ ├── theme.ts # 공통적으..

개발하는 몽이
'typescript' 태그의 글 목록