Skip to content

Commit

Permalink
Add standalone output for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjames44 committed Jun 3, 2024
1 parent b5b56cc commit 471ef3a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 471ef3a

Please sign in to comment.