init create-fias

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-30 11:50:07 +05:00
commit 6265edf673
76 changed files with 37510 additions and 0 deletions

18
next.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import type { NextConfig } from 'next';
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {
/* config options here */
devIndicators: false,
// 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);