cvsa/packages/next/next.config.ts
2025-05-31 21:29:47 +08:00

11 lines
240 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
devIndicators: false
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);