24 lines
426 B
TypeScript
24 lines
426 B
TypeScript
|
|
import type { NextConfig } from 'next';
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: 'standalone',
|
||
|
|
serverExternalPackages: [
|
||
|
|
'pino',
|
||
|
|
'pino-pretty',
|
||
|
|
'bullmq',
|
||
|
|
'ioredis',
|
||
|
|
'minio',
|
||
|
|
'postgres',
|
||
|
|
'better-auth',
|
||
|
|
'nodemailer',
|
||
|
|
],
|
||
|
|
images: {
|
||
|
|
remotePatterns: [{ protocol: 'https', hostname: '*.portnimara.com' }],
|
||
|
|
},
|
||
|
|
experimental: {
|
||
|
|
typedRoutes: true,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|