10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true, // ✅ needed
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|