Perplexica/next.config.mjs

15 lines
267 B
JavaScript
Raw Normal View History

2024-04-09 16:21:05 +05:30
/** @type {import('next').NextConfig} */
const nextConfig = {
2025-03-20 09:46:50 +05:30
output: 'standalone',
2024-04-09 16:21:05 +05:30
images: {
remotePatterns: [
{
hostname: 's2.googleusercontent.com',
},
],
},
2025-03-18 11:29:04 +05:30
serverExternalPackages: ['pdf-parse'],
2024-04-09 16:21:05 +05:30
};
export default nextConfig;