wersja pokazaowa 26.08.2025

This commit is contained in:
2025-08-26 08:42:36 +02:00
parent b663af6767
commit 534a1f62ab
6 changed files with 659 additions and 158 deletions

View File

@@ -1,8 +1,12 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'export',
// 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;