Files

15 lines
308 B
TypeScript
Raw Permalink 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
2026-05-25 09:12:22 +03:30
const config: NextConfig = {
output: 'standalone',
};
export default withNextIntl(config);