2025-06-07 16:31:52 +03:30
|
|
|
import { NextConfig } from 'next';
|
|
|
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
2025-05-31 13:17:46 +03:30
|
|
|
|
2025-06-07 16:31:52 +03:30
|
|
|
const withNextIntl = createNextIntlPlugin({
|
|
|
|
|
experimental: {
|
|
|
|
|
createMessagesDeclaration: './messages/en.json',
|
|
|
|
|
},
|
|
|
|
|
});
|
2025-05-31 13:17:46 +03:30
|
|
|
|
2025-06-07 16:31:52 +03:30
|
|
|
const config: NextConfig = {};
|
|
|
|
|
|
|
|
|
|
export default withNextIntl(config);
|