vultr-dns-manager/next.config.js

12 lines
218 B
JavaScript
Raw Normal View History

2025-03-16 07:38:30 -06:00
/** @type {import('next').NextConfig} */
const nextConfig = {
distDir: 'dist',
eslint: {
ignoreDuringBuilds: true,
},
2025-03-16 07:53:44 -06:00
images: { unoptimized: true },
output: 'standalone',
2025-03-16 07:38:30 -06:00
};
module.exports = nextConfig;