NEtraAi / frontend /next.config.js
093xpku
Clean project layout deployment
9bc686b
Raw
History Blame Contribute Delete
217 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
};
module.exports = nextConfig;