Files
fast3dtextonline/next.config.ts
2025-07-30 20:18:02 +08:00

8 lines
211 B
TypeScript

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