You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
images.unoptimized: true serves raw GIFs — next.config.js:5
GIFs in public/images/ are up to 7MB. The repo already has mp4/webm conversions for most of them. Serve <video> with mp4/webm sources instead of <img> for animated content.
SwitchImage uses next/legacy/image — src/components/SwitchImage/index.tsx:2
Migrate from next/legacy/image to next/image. The legacy component will be removed in a future Next.js version.
Problems
images.unoptimized: trueserves raw GIFs —next.config.js:5GIFs in
public/images/are up to 7MB. The repo already has mp4/webm conversions for most of them. Serve<video>with mp4/webm sources instead of<img>for animated content.SwitchImageusesnext/legacy/image—src/components/SwitchImage/index.tsx:2Migrate from
next/legacy/imagetonext/image. The legacy component will be removed in a future Next.js version.