Allow typescript errors in build

This commit is contained in:
Xevion
2023-01-14 14:00:41 -06:00
parent 496a25cf59
commit fb337b9a4c

View File

@@ -7,11 +7,14 @@
/** @type {import("next").NextConfig} */ /** @type {import("next").NextConfig} */
const config = { const config = {
reactStrictMode: true, reactStrictMode: true,
swcMinify: true, swcMinify: true,
i18n: { i18n: {
locales: ["en"], locales: ["en"],
defaultLocale: "en", defaultLocale: "en",
}, },
typescript: {
ignoreBuildErrors: true,
}
}; };
export default config; export default config;