This repository has been archived on 2025-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
mssgme-website/next.config.ts
2025-07-02 13:37:16 +03:00

9 lines
238 B
TypeScript

import './env-setup';
import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);