/** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "wttr.in", }, ], }, async headers() { return [ { source: "/(.*)", headers: [ { key: "X-Content-Type-Options", value: "nosniff" }, // SharedArrayBuffer для onnxruntime-web threaded WASM (нужен на iOS). // credentialless менее строгий чем require-corp — не ломает Google Fonts. { key: "Cross-Origin-Opener-Policy", value: "same-origin" }, { key: "Cross-Origin-Embedder-Policy", value: "credentialless" }, ], }, ]; }, }; export default nextConfig;