Files
gastro-bot/next.config.ts
Samandar Turgunboyev 33185702df bug fix
2026-01-24 17:17:54 +05:00

25 lines
658 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: 'api.gastro.felixits.uz' },
{ protocol: 'https', hostname: 'api.gastro.felixits.uz' },
],
},
};
const withNextIntl = createNextIntlPlugin({
requestConfig: './src/shared/config/i18n/request.ts',
experimental: {
createMessagesDeclaration: './src/shared/config/i18n/messages/uz.json',
},
});
export default withNextIntl(nextConfig);