10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
formats: ["image/avif", "image/webp"]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|