-이미지태그와 nextjs Image 컴포넌트비교, Sharp 성능
Node.js Sharp사용해서 블러처리
const sharp = require('sharp');
async function blurImage(inputPath, outputPath, blurRadius = 10) {
await sharp(inputPath)
.blur(blurRadius)
.toFile(outputPath);
}
// 실행
blurImage('input.jpg', 'output.jpg', 10);
7가지 플랫폼 서버로 프론트엔드 버프 마법 걸기 (1) | 요즘IT
-토스 core의 이미지 서버, 클라우드너리 참고
7가지 플랫폼 서버로 프론트엔드 버프 마법 걸기 (2) | 요즘IT
오픈 그래프 마법
Headless Browser Puppeteer Screenshots
Metadata Files: opengraph-image and twitter-image
nextjs는 따로 서버를 안만들어도 위처럼 지원하는듯