change package managers

This commit is contained in:
azizziy
2025-12-27 09:32:01 +05:00
commit 05dc099df9
189 changed files with 13706 additions and 0 deletions

21
next.config.ts Normal file
View File

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