Files
waggle-os/apps/www/next.config.mjs
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

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);