新增 GitHub 统计卡片和徽章组件,在项目卡片、详情页和侧边栏中展示 GitHub stars、forks 等统计数据 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
454 B
JavaScript
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)
|