/** @type {import('next').NextConfig} */ const nextConfig = { images: { domains: ['nextcloud.biohazardvfx.com', 'f.io'], formats: ['image/webp', 'image/avif'], }, async rewrites() { return [ { source: '/admin/:path*', destination: '/admin/:path*', }, ] }, } module.exports = nextConfig