moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

15
apps/www/next.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
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);