Files
pasargad/next.config.ts
T

13 lines
283 B
TypeScript
Raw Normal View History

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