2026-02-21 19:04:54 +00:00

11 lines
198 B
JavaScript

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