mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-04-29 07:42:46 +00:00
15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 's2.googleusercontent.com',
|
|
},
|
|
],
|
|
},
|
|
serverExternalPackages: ['pdf-parse'],
|
|
};
|
|
|
|
export default nextConfig;
|