makearmy-app/next.config.js
2025-09-22 10:37:53 -04:00

26 lines
575 B
JavaScript

// /var/www/makearmy.io/app/next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'forms.lasereverything.net',
port: '',
pathname: '/assets/**',
},
{
protocol: 'https',
hostname: 'forms.makearmy.io',
port: '',
pathname: '/assets/**',
},
],
},
// No experimental.appDir — App Router is default in Next 15
};
module.exports = nextConfig;