Files
pasargad/next.config.ts
2026-05-25 09:12:22 +03:30

15 lines
308 B
TypeScript

import { NextConfig } from 'next';
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin({
experimental: {
createMessagesDeclaration: './messages/en.json',
},
});
const config: NextConfig = {
output: 'standalone',
};
export default withNextIntl(config);