mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-12-14 15:48:15 +00:00
20 lines
376 B
JavaScript
20 lines
376 B
JavaScript
import pkg from './package.json' with { type: 'json' };
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 's2.googleusercontent.com',
|
|
},
|
|
],
|
|
},
|
|
serverExternalPackages: ['pdf-parse'],
|
|
env: {
|
|
NEXT_PUBLIC_VERSION: pkg.version,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|