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