tca-admin/next.config.js
2025-08-12 10:52:01 +05:30

13 lines
248 B
JavaScript

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