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