nextjs+typescript 기반 CMS 개발 프로젝트

[nextjs+ts]프로젝트 01. 개발환경 설정

개발자 고포고 2022. 3. 7. 00:34
반응형

[nextjs+ts]프로젝트  01.  개발환경 설정

 

개발환경:

frontend : nextjs typescript tailwindCSS

backend :  asp.net core 3.1

 

다음 환경을 기반으로 Dashboard 기반 Admin CMS 개발 예정

 

[nextjs+typescript 설치]

npx create-next-app@latest --typescript

 

[18 rc 버전으로 업데이트]

npm i next@latest react@rc react-dom@rc

 

[next.config.js] - 버그를 위한 옵션 추가

/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  experimental: {reactRoot:true}
}

module.exports = nextConfig

 

#nextjs #ts #typescript #js #cms #admin #react

반응형