first commit
This commit is contained in:
18
next.config.ts
Normal file
18
next.config.ts
Normal 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);
|
||||
Reference in New Issue
Block a user