Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 객체에서 value만 가져오기
- fill
- 배열 중복 개수 구하기
- MIN
- array
- 맥에서 MSSQL
- 썸네일 생성
- 자바스크립트
- AWS
- 이벤트 중복 발생 현상
- DB 백업 파일 복원
- sort
- math
- reduce
- fluent-ffmpeg
- 삼항연산자
- Filter
- max
- map
- substr
- 레벨1
- +연산자
- iscomposing
- indexof
- 프로그래머스
- 레벨2
- 리액트
- mssql
- AWS EBS
- Azure Data Studio
Archives
- Today
- Total
목록설치 (1)
3은로그

1. study-nextJS14 폴더 생성2. Visual Studio Code에서 nextjs14 폴더 열기3. VSC의 터미널 안에서 npm init -y 입력 -> package.json 파일이 생성됨4. package.json에서 license를 MIT으로 변경 5. npm install next@latest react@latest react-dom@latest 설치 6. package.json에서 "scripts"를 "dev": "next dev"로 변경(이 dev 명령어를 실행하면 Next JS가 실행된다) 7. app/page.tsx 폴더 생성 page.tsxexport default function Tomato() { return Hello NextJs!} 8. 터미널에 npm run..
NextJS
2024. 5. 13. 16:14