metms_fe/next.config.ts
2026-05-23 09:48:07 +07:00

10 lines
150 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
turbopack: {
root: process.cwd(),
},
};
export default nextConfig;