Spaces:
Running
Running
File size: 319 Bytes
9fc92d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['static.photos', 'zimprojects.co.zw'],
},
env: {
MONGODB_URI: process.env.MONGODB_URI,
JWT_SECRET: process.env.JWT_SECRET,
BASE_URL: process.env.BASE_URL,
},
}
module.exports = nextConfig |