Files
gastro-bot/next.config.ts
Samandar Turgunboyev 9978b4e3fe api ulandi
2025-12-22 11:35:55 +05:00

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