Light Purple Pointer
Vercel 배포
·
DEV/배포
https://vercel.com/ Vercel: Build and deploy the best web experiences with the Frontend Cloud – VercelVercel's Frontend Cloud gives developers the frameworks, workflows, and infrastructure to build a faster, more personalized web.vercel.com  add new -> project를 누르면됨  여기서 배포할 프로젝트를 import  하면된다.    deploy 하기전에 프로젝트에서 build시에 오류가 있는지 확인하기 위해서 터미널에 npm run build로 확인해 준다.   이런식으로 에러가 발생하게 된다.    발생하..
<Build Error 해결> Meterial-tailwind 태그의 property type 에러 발생 시
·
DEV/배포
📌 에러 발생 배포하기 전에 프로젝트에서 npm run build를 통해 확인해 보는데, 아래와 같은 에러가 발생했다.    이 문제는 해당 프로젝트에서 사용하고 있는 meterial-tailwind 에서 제공하는 태그들을 사용했을 때  이렇게 해당 태그에 필요한 프로퍼티들을 제공하지 않아서 발생하는 에러이다. 하지만 해당 속성들은 실제로 필요하지 않는 (코드만 길어짐) 것들이라 해결 방안은 1. 에러가 나는 모든 태그에 필수 프로퍼티들을 넣어주기  2. index.d.ts 파일을 만들어서  typecript는 이미 존재하는 라이브러리라도 강제로 타입 지정을 다시 해 줄 수 있음  그래서 두 번째 방법으로 에러 해결하였다.  🛠️ 에러 해결    declare module "@material-tail..
<Build Error 해결> Type 'ReactNode' is not assignable to type 'NonNullable<ReactNodeLike>'. Type 'bigint' is not assignable to type 'NonNullable<ReactNodeLike>'.
·
DEV/배포
📌 에러 발생 배포하기 전에 프로젝트에서 npm run build를 통해 확인해 보는데, 아래와 같은 에러가 발생했다.    확인해 보니,   해당 프로젝트에서 사용중인 Meterial-tailwind-theme-provider에서 문제가 발생한거 같다.  찾아보니 나와 완전 똑같은 에러를 겪고 있는 사람을 찾았음 https://github.com/creativetimofficial/material-tailwind/issues/593: ERROR(TypeScript) Type 'ReactNode' is not assignable to type 'NonNullable'. · I" data-og-description="import { ThemeProvider } from '@material-tailwin..