import type { NextConfig } from "next"; // next.config.ts const nextConfig = { output: "export", images: { unoptimized: true }, trailingSlash: true, eslint: { ignoreDuringBuilds: true }, // ← nie blokuj buildu na lint // typescript: { ignoreBuildErrors: true }, // ← użyj tylko awaryjnie }; export default nextConfig;