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 6013510 commit 637e070Copy full SHA for 637e070
client/src/cyber-forensics-platform/next.config.js
@@ -4,9 +4,10 @@ const nextConfig = {
4
domains: ['oaidalleapiprodscus.blob.core.windows.net'],
5
},
6
webpack: (config, { isServer }) => {
7
- // Handle SQLite3 on the server side
+ // Handle SQLite3 and PostgreSQL on the server side
8
if (isServer) {
9
config.externals.push('sqlite3');
10
+ config.externals.push('pg');
11
}
12
return config;
13
0 commit comments