cvsa/packages/next/next.config.ts
2025-06-01 01:53:06 +08:00

15 lines
320 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
devIndicators: false,
experimental: {
externalDir: true
},
transpilePackages: ["@cvsa/backend"]
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);