diff --git a/bun.lockb b/bun.lockb index 57e4805..23f5a7e 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/next.config.mjs b/next.config.mjs index fd74dd1..aff8925 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -3,6 +3,9 @@ const nextConfig = { typescript: { ignoreBuildErrors: true, }, + compiler: { + removeConsole: true, + }, staticPageGenerationTimeout: 300, @@ -15,8 +18,8 @@ const nextConfig = { { hostname: "directus.voicedeck.org", protocol: "https", - } - ] + }, + ], }, headers() { return [ @@ -25,11 +28,11 @@ const nextConfig = { headers: [ { key: "Access-Control-Allow-Origin", - value: "*" - } + value: "*", + }, ], - } - ] + }, + ]; }, redirects: async () => { return [ @@ -47,5 +50,4 @@ const nextConfig = { }, }; - export default nextConfig;