mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-18 13:34:08 +01:00
Documetation setup, rewrite dockerfile and compose, manifest and add healthcheck
25 lines
422 B
TypeScript
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;
|