Files
gastro-bot/next.config.ts
2025-12-16 11:38:11 +05:00

22 lines
560 B
TypeScript

import type { NextConfig } from 'next';
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {
/* config options here */
devIndicators: false,
// eslint: {
// ignoreDuringBuilds: true,
// },
images: {
remotePatterns: [{ protocol: 'http', hostname: '**' }],
},
};
const withNextIntl = createNextIntlPlugin({
requestConfig: './src/shared/config/i18n/request.ts',
experimental: {
createMessagesDeclaration: './src/shared/config/i18n/messages/uz.json',
},
});
export default withNextIntl(nextConfig);