16 lines
463 B
JavaScript
16 lines
463 B
JavaScript
import createNextIntlPlugin from 'next-intl/plugin';
|
|
|
|
const withNextIntl = createNextIntlPlugin('./i18n/request.ts');
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// Match the existing `apps/web` philosophy: build outputs are tree-shakeable
|
|
// ESM, modern image formats served via Next.js's built-in optimizer.
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|