13 lines
314 B
JavaScript
13 lines
314 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Remove output: 'export' to allow dynamic API routes
|
|
distDir: 'dist',
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: { unoptimized: true }
|
|
// Removed experimental.appDir as it's now enabled by default
|
|
};
|
|
|
|
module.exports = nextConfig;
|