Perplexica/next.config.mjs

18 lines
380 B
JavaScript
Raw Normal View History

import createNextIntlPlugin from 'next-intl/plugin';
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
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);