/** @type {import('next').NextConfig} */ module.exports = { eslint: { // Disabling on production builds because we're running checks on PRs via GitHub Actions. ignoreDuringBuilds: true }, experimental: { appDir: true }, images: { formats: ['image/avif', 'image/webp'], remotePatterns: [ { protocol: 'https', hostname: 'cdn.shopify.com', pathname: '/s/files/**' }, { protocol: 'https', hostname: 'medusa-public-images.s3.eu-west-1.amazonaws.com', pathname: '/**' } ] } };