10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
formats: ["image/avif", "image/webp"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|