Files
avbeat-com/next.config.mjs
Ryan Salazar 4ec3e48c62 fix: drop next.config /login → /client-login redirect
next.config redirects fire before middleware/page.tsx, so /login still
307'd to /client-login (which bounces to distribute). Removing the
config rule lets src/app/login/page.tsx serve a real BB-direct sign-in
form for admin access.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-26 15:08:58 +00:00

134 lines
3.4 KiB
JavaScript

import { imageHosts } from './image-hosts.config.js';
/** @type {import('next').NextConfig} */
const nextConfig = {
productionBrowserSourceMaps: true,
distDir: process.env.DIST_DIR || '.next',
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: imageHosts,
formats: ['image/avif', 'image/webp'],
minimumCacheTTL: 86400,
deviceSizes: [640, 750, 828, 1080, 1200, 1920],
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
},
// Performance: compress responses
compress: true,
// Performance: power headers for caching static assets
async headers() {
return [
{
source: '/assets/:path*',
headers: [
{ key: 'Cache-Control', value: 'public, max-age=31536000, immutable' },
],
},
{
source: '/_next/static/:path*',
headers: [
{ key: 'Cache-Control', value: 'public, max-age=31536000, immutable' },
],
},
{
source: '/_next/image/:path*',
headers: [
{ key: 'Cache-Control', value: 'public, max-age=86400, stale-while-revalidate=604800' },
],
},
];
},
async redirects() {
return [
// Homepage canonical: '/' is the real route now (src/app/page.tsx
// re-exports from src/app/home-page/page.tsx). The legacy
// /home-page URL gets a 301 permanent redirect to '/' so any
// crawler entry for /home-page consolidates link equity onto
// the canonical root.
{
source: '/home-page',
destination: '/',
permanent: true,
},
// WordPress admin redirects for broadcastbeat.com (301 permanent)
{
source: '/wp-admin',
destination: '/admin',
permanent: true,
},
{
source: '/wp-admin/',
destination: '/admin',
permanent: true,
},
{
source: '/wp-admin/post-new.php',
destination: '/contributor',
permanent: true,
},
{
source: '/wp-admin/edit.php',
destination: '/admin/articles',
permanent: true,
},
{
source: '/wp-admin/profile.php',
destination: '/account',
permanent: true,
},
{
source: '/wp-login.php',
destination: '/client-login',
permanent: true,
},
{
source: '/wp-login.php/:path*',
destination: '/client-login',
permanent: true,
},
// Catch-all for any other wp-admin sub-paths
{
source: '/wp-admin/:path*',
destination: '/admin',
permanent: true,
},
// AV Beat dashboard redirect (avbeat.com/wp-admin/ → unified dashboard)
// These are handled by the same Next.js app when serving avbeat.com
{
source: '/avbeat/wp-admin',
destination: '/admin',
permanent: true,
},
{
source: '/avbeat/wp-admin/',
destination: '/admin',
permanent: true,
},
{
source: '/avbeat/wp-login.php',
destination: '/client-login',
permanent: true,
},
{
source: '/avbeat/wp-login.php/:path*',
destination: '/client-login',
permanent: true,
},
// /login is a real BB-direct sign-in page (used by admin backend).
// Do NOT redirect it to /client-login anymore.
];
}
};
export default nextConfig;