본문 바로가기

TIL96

HTML&CSS | 이미지 비율 유지하기 Solve your image sizing and positioning problems forever. https://medium.com/dev-genius/solve-your-image-sizing-and-positioning-problems-forever-7859e24118ce img-container div 로 감싼 뒤, img 내부 스타일링을 다음과 같이 한다. background-image: url(""); background-position: center; background-size: cover; width: 100%; height: 100%; How to remove a border of background-image https://stackoverflow.com/questions/4478.. 2020. 9. 14.
AWS S3 | Missing credentials in config, if using AWS_CONFIG_FILE, set AWS_SDK_LOAD_CONFIG=1 error> Missing credentials in config, if using AWS_CONFIG_FILE, set AWS_SDK_LOAD_CONFIG=1 solution> aws config 정보를 읽지 못한다는 메시지이므로, .env 파일 위치가 루트에 있어야 한다. console.log("env, ", process.env.AWS_CONFIG) //입력해서 제대로 출력되는지 확인 참고> https://m.blog.naver.com/PostView.nhn?blogId=dydals56789&logNo=221516669383&proxyReferer=https:%2F%2Fwww.google.com%2F 2020. 7. 9.
Flutter 플러터 앱개발-배경화면 이미지 적용하기 How do I add a background image to flutter app? How do I add a background image to flutter app? I am trying to add a Background image to my Flutter App, and I have gone through all similar questions on SO. The app m runs fine but the image does not appear. here is my widget code: @overrid... stackoverflow.com Scaffold는 배경화면 이미지를 지원하지 않으므로, Container 위젯으로 감싸서 배경화면 이미지를 적용한다. Scaffold 에는 백그라운드에 tr.. 2020. 6. 15.
Error: Could not find argument ** for type User Error: Could not find argument ** for type User await prisma.updateUser({ where: {id:user.id} ** // 2020. 3. 24.
'likeCount' Expected non-null value, found null. Error: Variable '$data' expected value of type 'PostCreateInput!' but got: {"caption":"슈퍼히어로의 등장","title":"고양이가 세상을 구한다","user":{"connect":{"id":"ck7bq44ja000q0798887nbw2c"}}}. Reason: 'likeCount' Expected non-null value, found null. (line 1, column 11): 해결> datamodel.prisma type Post { likeCount 삭제 } 2020. 3. 15.
TypeError: _prismaClient.prisma.commentproduct is not a function TypeError: _prismaClient.prisma.commentproduct is not a function > prisma-client 폴더를 살펴본다. 2020. 3. 11.