Latest updarte

This commit is contained in:
hubaceks
2026-05-18 23:04:50 +02:00
parent 889c84c553
commit 7d63addc7e
59 changed files with 10991 additions and 246 deletions

View File

@@ -1,7 +1,14 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
// Na serveru s malou RAM přeskočíme TS kontrolu při buildu.
// Typy kontroluj lokálně: npx tsc --noEmit
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;