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>
21 lines
396 B
TypeScript
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
|