Files
payload/examples/draft-preview/next-pages/next.config.js
2023-08-01 16:53:45 -04:00

11 lines
237 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['localhost', process.env.NEXT_PUBLIC_CMS_URL || ''].filter(Boolean),
},
}
module.exports = nextConfig