전체 글 515

[ ANGULAR ] 웹팩 webpack-sources/lib/SizeOnlySource.js 오류 발생시

웹팩 오류가 지속적으로 발생할 경우/Unode_modules/webpack-sources/lib/SizeOnlySource.js:16 return new Error( ^Error: Content and Map of this Source is not available (only size() is supported)https://github.com/webpack/webpack/issues/14840 Crash with `Error: Content and Map of this Source is not available (only size() is supported)` · Issue #14840 · webpack/webpacBug report I..

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

[ GMAIL ] 메일 내용중 이미지 컨텐츠 표시 문제

Gmail 확인되지 않은 이미지 관련 정책https://stackoverflow.com/questions/51471607/email-thumbnail-url-changed-to-googleusercontent-com-in-gmail Email thumbnail URL changed to googleusercontent.com in gmailI have a system whenever user upload an image, it will send an email to the registered user's gmail. But in the email, i see something like this, the thumbnail is not viewable. I inspect on the el...stackove..

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

[ MYSQL ] 중복처리 - 포인트 지급이 중복되는 경우 ( 외부에서 호출이 강제로 여러번 )

1. SQL 쿼리 수정 (INSERT IGNORE 또는 REPLACE)MySQL 또는 MariaDB를 사용하는 경우, INSERT IGNORE를 사용해 중복 삽입을 방지하거나, ON DUPLICATE KEY UPDATE를 사용해 업데이트 처리할 수 있습니다.1-1. UNIQUE 제약 조건 추가user_id와 invoice_id의 조합이 고유하도록 테이블에 UNIQUE 제약 조건을 설정합니다.ALTER TABLE USER_POINTADD CONSTRAINT unique_user_invoice UNIQUE (user_id, invoice_id);​  1-2. INSERT IGNORE 사용UNIQUE 제약 조건이 있는 상태에서 동일한 user_id와 invoice_id가 있을 경우 삽입을 무시합니다.const..

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