vultr-dns-manager/next.config.js
2025-03-16 07:38:30 -06:00

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;