File tree Expand file tree Collapse file tree
dev-packages/e2e-tests/test-applications
nextjs-16-cacheComponents Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { withSentryConfig } from '@sentry/nextjs' ;
22import type { NextConfig } from 'next' ;
33
4- const nextConfig : NextConfig = { } ;
4+ const nextConfig : NextConfig = {
5+ serverExternalPackages : [ '@napi-rs/keyring' ] ,
6+ } ;
57
68export default withSentryConfig ( nextConfig , {
79 silent : true ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import type { NextConfig } from 'next';
33
44const nextConfig : NextConfig = {
55 cacheComponents : true ,
6+ serverExternalPackages : [ '@napi-rs/keyring' ] ,
67} ;
78
89export default withSentryConfig ( nextConfig , {
Original file line number Diff line number Diff line change 11import { withSentryConfig } from '@sentry/nextjs' ;
22import type { NextConfig } from 'next' ;
33
4- const nextConfig : NextConfig = { } ;
4+ const nextConfig : NextConfig = {
5+ serverExternalPackages : [ '@napi-rs/keyring' ] ,
6+ } ;
57
68export default withSentryConfig ( nextConfig , {
79 silent : true ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import type { NextConfig } from 'next';
33
44const nextConfig : NextConfig = {
55 trailingSlash : true ,
6+ serverExternalPackages : [ '@napi-rs/keyring' ] ,
67} ;
78
89export default withSentryConfig ( nextConfig , {
Original file line number Diff line number Diff line change 11import { withSentryConfig } from '@sentry/nextjs' ;
22import type { NextConfig } from 'next' ;
33
4- const nextConfig : NextConfig = { } ;
4+ const nextConfig : NextConfig = {
5+ serverExternalPackages : [ '@napi-rs/keyring' ] ,
6+ } ;
57
68export default withSentryConfig ( nextConfig , {
79 silent : true ,
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ import type { NextConfig } from 'next';
44// Simulate Vercel environment for cron monitoring tests
55process . env . VERCEL = '1' ;
66
7- const nextConfig : NextConfig = { } ;
7+ const nextConfig : NextConfig = {
8+ serverExternalPackages : [ '@napi-rs/keyring' ] ,
9+ } ;
810
911export default withSentryConfig ( nextConfig , {
1012 silent : true ,
You can’t perform that action at this time.
0 commit comments