Files
pp-tcms/frontend/next.config.js
2024-04-20 20:28:21 +09:00

13 lines
292 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
}
module.exports = nextConfig