Skip to content

Commit 637e070

Browse files
committed
next config
1 parent 6013510 commit 637e070

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/src/cyber-forensics-platform/next.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ const nextConfig = {
44
domains: ['oaidalleapiprodscus.blob.core.windows.net'],
55
},
66
webpack: (config, { isServer }) => {
7-
// Handle SQLite3 on the server side
7+
// Handle SQLite3 and PostgreSQL on the server side
88
if (isServer) {
99
config.externals.push('sqlite3');
10+
config.externals.push('pg');
1011
}
1112
return config;
1213
},

0 commit comments

Comments
 (0)