Files
MOPC-Portal/next.config.ts
Matt bd9cd310fc Remove next-intl localization infrastructure
Strips out the i18n layer (next-intl, message files, language switcher,
provider) to reduce complexity. Nav components now use plain English strings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 14:57:27 +01:00

21 lines
396 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
output: 'standalone',
typedRoutes: true,
serverExternalPackages: ['@prisma/client', 'minio'],
experimental: {
optimizePackageImports: ['lucide-react'],
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '*.minio.local',
},
],
},
}
export default nextConfig