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