26 lines
575 B
JavaScript
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;
|
|
|