Update deps, fix Docker build errors

This commit is contained in:
Darren Clarke 2024-05-14 09:40:58 +02:00
parent 162390008b
commit c62bfd2a4c
31 changed files with 832 additions and 1227 deletions

View file

@ -1,10 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
missingSuspenseWithCSRBailout: false,
},
transpilePackages: ["leafcutter-ui", "bridge-ui", "opensearch-common", "ui"],
transpilePackages: [
"leafcutter-ui",
"opensearch-common",
"ui",
"bridge-common",
"bridge-ui",
],
publicRuntimeConfig: {
linkURL: process.env.LINK_URL ?? "http://localhost:3000",
bridgeURL: process.env.BRIDGE_URL ?? "http://localhost:8002",
@ -13,4 +18,4 @@ const nextConfig = {
},
};
module.exports = nextConfig;
export default nextConfig;