perf: enable avif/webp image optimization formats

This commit is contained in:
Zac Gaetano 2026-05-01 14:20:40 -04:00
parent 869ec1e6e9
commit 13e1221851

View file

@ -2,6 +2,9 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone", output: "standalone",
images: {
formats: ["image/avif", "image/webp"],
},
async headers() { async headers() {
return [ return [
{ {