Files
agent-park/next.config.js
T
mzaxdandClaude cae5686d2d feat: 添加 GitHub 统计数据展示功能
新增 GitHub 统计卡片和徽章组件,在项目卡片、详情页和侧边栏中展示 GitHub stars、forks 等统计数据

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-30 14:14:02 +08:00

20 lines
454 B
JavaScript

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)