const createNextIntlPlugin = require('next-intl/plugin') const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts') /** @type {import('next').NextConfig} */ const nextConfig = { images: { remotePatterns: [ { hostname: 'localhost' }, { hostname: '*.anthropic.com' }, { hostname: 'img.shields.io' } ] }, experimental: { optimizePackageImports: ['lucide-react'] } } module.exports = withNextIntl(nextConfig)