React, Next
[RN] React Native 환경변수 설정(env)
api 요청 시 API KEY 등 중요한 정보를 노출하지 않을 때나, 다양한 변수를 저장하기 위해서 환경변수를 설정하면 쉽게 관리할 수 있다. react-native-dotenv 라이브러리를 설치하고 babel.config.js 파일도 추가해줘야한다. module.exports = function (api) { api.cache(true); return { presets: ["babel-preset-expo"], plugins: [ ... [ "module:react-native-dotenv", { moduleName: "@env", path: ".env", blacklist: null, whitelist: null, safe: true, allowUndefined: true, }, ], ], }; };..
2023. 12. 6.