Skip to content

Commit 48258b0

Browse files
committed
fix: desesperate build attempt
1 parent 885a04c commit 48258b0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

samples/next.js/next.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import type { NextConfig } from 'next';
22

3-
const nextConfig: NextConfig = {};
3+
const nextConfig: NextConfig = {
4+
// @zenstackhq/orm uses node:async_hooks (AsyncLocalStorage).
5+
// Mark it as server-external so Turbopack never tries to analyze it in any bundle context.
6+
serverExternalPackages: ['@zenstackhq/orm', '@zenstackhq/tanstack-query'],
7+
};
48

59
export default nextConfig;

0 commit comments

Comments
 (0)