ForFarm/frontend/next.config.ts
Sirin Puenggun 21f81e4c78
Merge pull request #34 from ForFarmTeam/documetation-setup
Documetation setup, rewrite dockerfile and compose, manifest and add healthcheck
2025-04-04 23:42:45 +07:00

25 lines
422 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",
},
],
},
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;