Feat: Externalize ws and surrealdb from Next.js bundle

This commit is contained in:
2026-03-15 13:09:47 -07:00
parent ae8761ada2
commit de38920499

View File

@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone'
output: 'standalone',
serverExternalPackages: ['ws', 'surrealdb']
};
export default nextConfig;