chore: prevent typescript errors when building docker file

This commit is contained in:
Steven
2023-04-26 23:30:51 +08:00
parent 4f02a6f9ad
commit 96724709bd

View File

@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
module.exports = {
output: "standalone",
// Prevent TypeScript errors.
typescript: {
ignoreBuildErrors: true,
},
};