Files
payload/examples/auth/next-pages/next.config.js
2023-07-06 14:15:28 -04:00

11 lines
217 B
JavaScript

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