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