Fix: Restore missing UI components and optimize config

This commit is contained in:
2026-01-08 21:13:12 +03:00
parent 18023550e0
commit 6e02336827
6 changed files with 719 additions and 1 deletions

View File

@@ -1,4 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
reactStrictMode: true,
webpack: (config) => {
// Suppress cache serialization warnings
config.infrastructureLogging = {
level: 'error',
};
return config;
},
};
export default nextConfig;