angelina-ph/next.config.mjs

11 lines
179 B
JavaScript
Raw Normal View History

2025-12-07 17:44:08 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
formats: ['image/webp', 'image/avif'],
},
};
export default nextConfig;