chore: deployment debugging - minimal middleware, health api, and nextjs upgrade

This commit is contained in:
2025-12-18 09:14:13 +01:00
parent 8c5d931b6e
commit f600360505
5 changed files with 244 additions and 92 deletions

View File

@@ -1,13 +1,6 @@
/** @type {import('next').Config} */
const nextConfig = {
productionBrowserSourceMaps: false,
transpilePackages: ['@supabase/auth-helpers-nextjs'],
webpack: (config, { isServer, dev }) => {
if (isServer && !dev) {
config.devtool = false;
}
return config;
},
};
export default nextConfig;