zapishis-client/apps/web/next.config.js
vchikalkin ecc7b44d6d
Some checks failed
Build & Deploy Web & Bot / Build and Push to Docker Hub (push) Has been cancelled
Build & Deploy Web & Bot / Deploy to VPS (push) Has been cancelled
fix build web with docker compose
2025-07-02 17:46:33 +03:00

15 lines
319 B
JavaScript

import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./utils/i18n/i18n.ts');
const nextConfig = withNextIntl({
eslint: {
ignoreDuringBuilds: true,
},
output: 'standalone',
reactStrictMode: true,
transpilePackages: ['@repo/ui'],
});
export default nextConfig;