18 lines
405 B
JavaScript
18 lines
405 B
JavaScript
import { withPayload } from '@payloadcms/next/withPayload'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Your Next.js config here
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'storage.googleapis.com',
|
|
pathname: `/${process.env.GOOGLE_BUCKET}/**`,
|
|
},
|
|
],
|
|
}
|
|
}
|
|
|
|
export default withPayload(nextConfig)
|