본문 바로가기

Framework & Library/React-native

Export namespace should be first transformed by `@babel/plugin-proposal-export-namespace-from` [error]

 

 

 

 react-native 릴리즈 버전으로 aab 뽑다가 발생한 에러 고치기 2편이 되시겠다

상단의 에러가 발생했을 경우엔,


babel.config.js

파일에, plugins 를 한줄 추가해주면 된다ㅏㅏㅏ

module.exports = {
  ...
  // 아랫 줄 추가
  plugins: ['react-native-reanimated/plugin'],
};

 

설정 파일을 고쳤으면??

cd android , gradlew clean 필수 !!

 

 

출처 : 

https://stackoverflow.com/questions/72927722/export-namespace-should-be-first-transformed-by-babel-plugin-proposal-export-n

 

Export namespace should be first transformed by `@babel/plugin-proposal-export-namespace-from`

I get the following error when I want to build my APK. Export namespace should be first transformed by @babel/plugin-proposal-export-namespace-from I need to say that I have imported react-native-

stackoverflow.com