import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', images: { remotePatterns: [ { protocol: 'https', hostname: 'media.licdn.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'avatars.githubusercontent.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'lh3.googleusercontent.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'cdn.discordapp.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'images.unsplash.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'via.placeholder.com', port: '', pathname: '/**', }, ], }, turbopack: { rules: { '*.sql': ['raw'], } }, }; export default nextConfig;