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