ForFarm/frontend/next.config.ts

11 lines
183 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
devIndicators: {
buildActivity: false,
},
};
export default nextConfig;