We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e7e104 commit 1fc24ccCopy full SHA for 1fc24cc
2 files changed
dev-packages/e2e-tests/test-applications/nextjs-16-cacheComponents/next.config.ts
@@ -4,6 +4,10 @@ import type { NextConfig } from 'next';
4
const nextConfig: NextConfig = {
5
cacheComponents: true,
6
serverExternalPackages: ['@napi-rs/keyring'],
7
+ webpack: config => {
8
+ config.externals.push('@napi-rs/keyring');
9
+ return config;
10
+ },
11
};
12
13
export default withSentryConfig(nextConfig, {
dev-packages/e2e-tests/test-applications/nextjs-16-tunnel/next.config.ts
@@ -3,6 +3,10 @@ import type { NextConfig } from 'next';
3
0 commit comments