Initial commit

This commit is contained in:
makearmy 2025-09-22 10:37:53 -04:00
commit 78f8d225ee
21173 changed files with 2907774 additions and 0 deletions

26
next.config.js Normal file
View file

@ -0,0 +1,26 @@
// /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;