Team 73

[ FLUTTER ] 이미지 업로드 용량 문제

https://powellstreet.tistory.com/87 고용량 이미지 업로드 오류 해결 (Nginx 파일 업로드 용량 제한 설정) * 문제 발견 이미지 파일 업로드 기능을 구현하다가 문제를 발견했다. 특정 용량 이상의 이미지들이 업로드가 되지 않는 것이었다. 로컬에서 테스트할 때는 분명히 용량 문제같은건 없었는데, powellstreet.tistory.com node.js 기존 경로 => .ebextensions/proxy.config 바꾼 경로 => .platform/nginx/conf.d/nginx.conf client_max_body_size 300M; 추가

Team/난감했던 이슈들 라넌.B 2022.03.11

[ ANGULAR ] polyfills 수정 후에도 IE 안되는 경우

Angular 11 까지만 IE 11 마지막으로 지원됨 12 부터는 지원안됨 .browserslistrc 수정 not prefix 제거 # This file is used by the build system to adjust CSS and JS output to support the specified browsers below. # For additional information regarding the format and rule options, please see: # https://github.com/browserslist/browserslist#queries # For the full list of supported browsers by the Angular framework, please see..

Team/난감했던 이슈들 HEON.D 2022.02.28

[ FLUTTER ] 버전 업데이트 후 에러

1. android:name 형식 변경 더보기 폴더경로 : android/app/main/AndroidManifest.xml 변경전 => android:name="io.flutter.app.FlutterApplication" 변경후=> android:name="${applicationName}" 2. kotlin_version 변경 더보기 폴더경로 : android ext.kotlin_version = '1.4.32' 3. sdk버전 올리고, allprojects 추가 더보기 폴더경로 : android/app compileSdkVersion 30 // 추가 allprojects { tasks.withType(JavaCompile) { options.compilerArgs

Team/난감했던 이슈들 라넌.B 2021.12.22