fix: remove deprecated instrumentationHook (enabled by default in Next.js 15)

This commit is contained in:
dayuan.jiang
2025-12-04 00:15:56 +09:00
parent 30b598d960
commit d36bf127d9

View File

@@ -3,9 +3,6 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
experimental: {
instrumentationHook: true,
},
};
export default nextConfig;