mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-18 21:44:08 +01:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
devIndicators: {
|
|
buildActivity: false,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|