/** @type {import('next').NextConfig} */ const nextConfig = { experimental: { appDir: true, }, images: { domains: ['localhost', 'res.cloudinary.com'], }, webpack: (config) => { config.module.rules.push({ test: /\.gpx$/, use: 'raw-loader', }); return config; }, }; module.exports = nextConfig;