angelina-ph/next.config.mjs

12 lines
272 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [], // если нужно — оставляем
},
};
export default nextConfig;