debugging build

This commit is contained in:
Triston Armstrong 2024-01-07 14:05:17 -06:00
parent 072ae71231
commit dadf304d33

View File

@ -2,7 +2,13 @@
* @type {import('next').NextConfig} * @type {import('next').NextConfig}
*/ */
const nextConfig = { const nextConfig = {
output: 'export' output: 'export',
eslint: {
ignoreDuringBuilds: true
},
typescript: {
ignoreBuildErrors: true
}
} }
export default nextConfig export default nextConfig