Files
desunweb3/next.config.ts

11 lines
269 B
TypeScript
Raw Permalink Normal View History

2026-02-03 13:30:48 +08:00
import type { NextConfig } from "next";
2026-02-03 15:47:03 +08:00
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts");
2026-02-03 13:30:48 +08:00
const nextConfig: NextConfig = {
/* config options here */
};
2026-02-03 15:47:03 +08:00
export default withNextIntl(nextConfig);