MOPC-App/next.config.ts

18 lines
327 B
TypeScript
Raw Permalink Normal View History

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
output: 'standalone',
typedRoutes: true,
serverExternalPackages: ['@prisma/client', 'minio'],
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '*.minio.local',
},
],
},
}
export default nextConfig