Spaces:
Running
Running
Build a secure full-stack website for ZimProjects.co.zw using Next.js (frontend) and Node/Express with MongoDB (backend). Model it visually and structurally on https://www.constructionenquirer.com/ , including ad slots, article management, and project listings. Include JWT authentication, admin dashboard, and responsive ad placements. Use Tailwind CSS, optimize for SEO, and prepare for deployment on Vercel and AWS. Provide complete code architecture with modular file structure and setup instructions. This should easily be uploaded to the Cpanel.
9fc92d7 verified | /** @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 |