2024-12-07 05:56:20 +00:00
|
|
|
import type { NextConfig } from "next";
|
2024-12-12 02:31:10 +00:00
|
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
2024-12-07 05:56:20 +00:00
|
|
|
|
2024-12-12 02:31:10 +00:00
|
|
|
const withNextIntl = createNextIntlPlugin();
|
2024-12-07 05:56:20 +00:00
|
|
|
|
2024-12-12 02:31:10 +00:00
|
|
|
const nextConfig: NextConfig = {};
|
|
|
|
|
|
|
|
export default withNextIntl(nextConfig);
|