- Copy prof_profile.png to refer_landing_page/public/images/ - Configure images.unoptimized in next.config.js for static export compatibility - Render high-resolution portrait profile image in professor section - All 12 quality gates passed clean (Exit Code 0)
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
trailingSlash: true,
|
|
reactStrictMode: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|