본문 바로가기

Coding/React34

React - next js process is not defined error Next js에서 env 파일에 환경 변수를 설정하고 나서 process is not defined error가 발생할 수 있다. 구글에서 next js process is not defined를 찾아보면 react scripts 버전을 업데이트를 하고, react-error-overlay@6.0.9를 삭제하는 방법이 있었다. 아니면 scripts에서 "preinstall":"react-error-overlay@6.0.9"를 설치하라는 명령도 있었지만 해결할 수 없었다. # process is not defined error ## process is not defined 해결 env 파일에 토큰을 설정했을 땐, env 변수를 잘 사용을 했는데, env 변수를 추가를 했더니 불러 오지 못했다. 그 이유는 .. 2022. 7. 22.
React - next.js - styled components 셋팅 next js에서 styled components를 바로 적용한다면 다음과 같은 error가 발생한다. 이유는 SSR을 하는 next.js가 syled component를 먼저 못 읽어서 발생하는 문제이다. #object * next js styled-components setting 하기 ## setting - _app.tsx && _document.tsx 이 error 해결 하기위해서 _app.tsx 파일과 _document.tsx 파일을 custom 해야한다. // _app.tsx import type { AppProps } from "next/app"; import { ThemeProvider } from "styled-components"; import { theme } from "../styl.. 2022. 6. 24.
React - material ui input element error react에서 material ui CheckBox element를 사용할 때, checked 속성 값에 boolean 이외 다른 값이 오면 다음과 같은 에러가 발생한다. "Material-UI: A component is changing the uncontrolled checked state of SwitchBase to be controlled." 이럴때, 설정 해놓은 값이 boolean 형태가 아닌 undefined나 null, string 값이 오면 controll 할 수 없다. 그래서 예외 처리를 해줘야한다. 설정해 놓은 값이 없을 경우 boolean을 넣을 수 있도록 2022. 4. 14.
React Native - While trying to resolve module `@apollo/client` from file React Native에서 graphql을 setting을 하면서 While trying to resolve module `@apollo/client` from file error가 발생 할 수 있다. @apollo/client 버전이 3.5 이상이 되면서 .cjs 파일을 읽지 못해서 생기는 원인이다. 이것을 해결 하기 위해서는 root 디렉토리에 metro.config.js 파일을 만들고 다음과 같이 설정을 해주면 된다. const { getDefaultConfig } = require("metro-config"); const { resolver: defaultResolver } = getDefaultConfig.getDefaultValues(); exports.resolver = { ...defaul.. 2022. 4. 2.
반응형