angelina-ph/next.config.js

11 lines
204 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/avif', 'image/webp'],
remotePatterns: [],
},
};
module.exports = nextConfig;