Move header config to nextConfig
This commit is contained in:
parent
51a5608f6c
commit
87bdc9aefa
|
|
@ -6,6 +6,16 @@ const nextConfig = {
|
|||
experimental: {
|
||||
proxyTimeout: 90_000,
|
||||
},
|
||||
// Document-Policy header for browser profiling
|
||||
async headers() {
|
||||
return [{
|
||||
source: "/:path*",
|
||||
headers: [{
|
||||
key: "Document-Policy",
|
||||
value: "js-profiling",
|
||||
}, ],
|
||||
}, ];
|
||||
},
|
||||
reactStrictMode: false,
|
||||
transpilePackages: ['crypto-hash'],
|
||||
// Enable production sourcemaps for Sentry
|
||||
|
|
@ -105,15 +115,4 @@ export default withSentryConfig(nextConfig, {
|
|||
// Don't fail the build if Sentry upload fails in monorepo context
|
||||
return;
|
||||
},
|
||||
|
||||
// Document-Policy header for browser profiling
|
||||
async headers() {
|
||||
return [{
|
||||
source: "/:path*",
|
||||
headers: [{
|
||||
key: "Document-Policy",
|
||||
value: "js-profiling",
|
||||
}, ],
|
||||
}, ];
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue