From 471ef3a2b26138166d2e86291e2730a9aadacd27 Mon Sep 17 00:00:00 2001 From: Phil Date: Mon, 3 Jun 2024 14:55:27 -0700 Subject: [PATCH] Add standalone output for docker --- next.config.mjs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index f61fd5bb..a3731ec0 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,11 +1,12 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - transpilePackages: ['@penumbra-zone/protobuf'], + transpilePackages: ["@penumbra-zone/protobuf"], webpack: (config) => { - config.experiments.asyncWebAssembly = true + config.experiments.asyncWebAssembly = true; return config; }, + output: "standalone", }; export default nextConfig; \ No newline at end of file