chore: pulls mongodb from main

This commit is contained in:
James
2024-02-16 11:27:23 -05:00
parent abf0f7111d
commit 12c5100bc8
28 changed files with 567 additions and 507 deletions

View File

@@ -1,5 +1,9 @@
const path = require('path')
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
@@ -13,6 +17,9 @@ const nextConfig = {
},
},
},
typescript: {
ignoreBuildErrors: true,
},
webpack: (config) => {
return {
...config,
@@ -53,4 +60,4 @@ const nextConfig = {
},
}
module.exports = nextConfig
module.exports = withBundleAnalyzer(nextConfig)