diff --git a/next.config.js b/next.config.js index 95a7600..c54a846 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,13 @@ * @type {import('next').NextConfig} */ const nextConfig = { - output: 'export' + output: 'export', + eslint: { + ignoreDuringBuilds: true + }, + typescript: { + ignoreBuildErrors: true + } } export default nextConfig