11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// output: 'export', // Disabled to support API routes
|
|
// distDir: 'dist', // Standard .next directory
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|