mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 22:14:08 +01:00
22 lines
372 B
TypeScript
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;
|