CZQM-Ops-Demo/next.config.js
2024-11-14 15:41:47 -05:00

11 lines
195 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
eslint: {
ignoreDuringBuilds: true,
},
images: { unoptimized: true },
};
module.exports = nextConfig;