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
|
|
|
|
2026-05-25 09:12:22 +03:30
|
|
|
const config: NextConfig = {
|
|
|
|
|
output: 'standalone',
|
|
|
|
|
};
|
2025-06-07 16:31:52 +03:30
|
|
|
|
|
|
|
|
export default withNextIntl(config);
|