Some checks failed
Deploy to Coolify / deploy (push) Failing after 12m45s
- Enhance ImageMedia component to properly handle absolute and relative URLs, avoiding ENV mismatches - Update next.config.js to filter invalid URLs and add error handling for image remote patterns - Add new workflow to remove AI-generated inconsistencies from branch diffs
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import { withPayload } from '@payloadcms/next/withPayload'
|
|
|
|
import redirects from './redirects.js'
|
|
|
|
const NEXT_PUBLIC_SERVER_URL = process.env.VERCEL_PROJECT_PRODUCTION_URL
|
|
? `https://${process.env.VERCEL_PROJECT_PRODUCTION_URL}`
|
|
: undefined || process.env.__NEXT_PRIVATE_ORIGIN || 'http://localhost:3000'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
...[NEXT_PUBLIC_SERVER_URL, process.env.NEXT_PUBLIC_SERVER_URL]
|
|
.filter(Boolean)
|
|
.map((item) => {
|
|
const urlString = item.startsWith('http') ? item : `https://${item}`
|
|
|
|
try {
|
|
const url = new URL(urlString)
|
|
return {
|
|
hostname: url.hostname,
|
|
protocol: url.protocol.replace(':', ''),
|
|
}
|
|
} catch (_) {
|
|
return null
|
|
}
|
|
})
|
|
.filter(Boolean),
|
|
],
|
|
},
|
|
webpack: (webpackConfig) => {
|
|
webpackConfig.resolve.extensionAlias = {
|
|
'.cjs': ['.cts', '.cjs'],
|
|
'.js': ['.ts', '.tsx', '.js', '.jsx'],
|
|
'.mjs': ['.mts', '.mjs'],
|
|
}
|
|
|
|
return webpackConfig
|
|
},
|
|
reactStrictMode: true,
|
|
redirects,
|
|
}
|
|
|
|
export default withPayload(nextConfig, { devBundleServerPackages: false })
|