ForFarm/frontend/next.config.ts
2025-04-04 21:51:01 +07:00

22 lines
372 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: {
buildActivity: false,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "static.wixstatic.com",
},
{
protocol: "http",
hostname: "static.wixstatic.com",
},
],
},
};
export default nextConfig;