본문 바로가기
끄적끄적

리액트 네이티브) 노란색 경고창 : Remote debugger is in a background tab which~

by 뇸뇸 nyomnyom 2022. 7. 22.

Remote debugger is in a background tab which may cause
apps to perform slowly. Fix this by foregrounding the tab (or opening it in a separate window).


import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';

export default function App() {
  
  LogBox.ignoreLogs(['Warning: ...']);
  
  return (
    <View style={styles.container}>

App.js에 export랑 return 사이에
LogBox.ignoreLogs(['Warning: ...']);
라는 문구 넣어주기


댓글