Files
landing_page/refer_landing_page/next.config.js
T
Godopu ca6e85ce9b feat(members): replace Affiliation & Office box with Prof. Seok-Joo Koh profile image
- 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)
2026-08-25 23:40:12 +09:00

12 lines
203 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
trailingSlash: true,
reactStrictMode: true,
images: {
unoptimized: true,
},
};
module.exports = nextConfig;