7.29

게시물 페이지 디자인 with Figma

Untitled

Untitled


7.30

npx create-next-app@latest

cd test-app

yarn set version stable

rm -rf node_modules

# yarnrc.yml 파일에 nodeLinker: pnp 추가

yarn install

# .gitignore 파일 생성

# 소스 파일 대부분에서 에러가 보일 시, 아래 명령어 수행 후 vscode 껐다 다시 실행
yarn dlx @yarnpkg/sdks vscode

# ctrl + shift + p
# Select TypeScript Version
# Use Workspace Version

#This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

Untitled


7.31