Foggy day
[Flutter] CORS debug 모드에서 해제 처리 본문
1. 빌드 실행 시 web security 해제
Edit Configuration-> Additional run args -> --web-browser-flag "--disable-web-security" 추가
2. flutter sdk에서 web security 해제
- flutter\bin\cache 로 이동, flutter_tools.stamp 파일 삭제
- flutter\packages\flutter_tools\lib\src\web 이동 -> chrome.dart 파일 오픈
기존에 있는 --disable-extensions 주석 or 제거
'--disable-web-security' 추가( 끝에 ,도 잊지 말것)
// '--disable-extensions',
'--disable-web-security',
실행 후 그래도 안된다면 invalidate cache 후 다시 해볼 것
'Flutter > Flutter 기타' 카테고리의 다른 글
[Flutter] Image cache(precacheImage)와 WidgetsFlutterBinding, PaintingBinding (0) | 2024.05.16 |
---|---|
[Flutter] different roots error 해결 (0) | 2023.10.26 |
[Dart] 위경도를 TM좌표 변환하기 (0) | 2023.08.31 |
[Flutter] MethodChannel - IOS (0) | 2023.08.30 |
[Flutter] IOS - no such module 'Flutter' (0) | 2023.08.30 |