motorstate-frontend/next.config.js
2025-12-26 13:12:37 +00:00

11 lines
198 B
JavaScript

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