This commit is contained in:
Philip Cheung 2024-10-08 14:49:19 +08:00
parent ae916f0130
commit 2038336ba3
1 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,8 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
ignoreBuildErrors: true, typescript: {
}; ignoreBuildErrors: true,
},
export default nextConfig; }
module.exports = nextConfig