Files
payloadcms/examples/form-builder/next-pages/next.config.js
2023-10-09 14:03:39 -04:00

11 lines
241 B
JavaScript

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