Skip to content

Commit

Permalink
Merge branch 'bera/design' into LF-11137
Browse files Browse the repository at this point in the history
  • Loading branch information
tche authored and tche committed Dec 26, 2024
2 parents 352a7f6 + bd6699b commit e16840a
Show file tree
Hide file tree
Showing 20 changed files with 1,485 additions and 545 deletions.
10 changes: 10 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,23 @@ const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
trailingSlash: false,
productionBrowserSourceMaps: false,
experimental: {
serverSourceMaps: false
},
webpack: (config) => {
config.resolve.extensionAlias = {
'.js': ['.ts', '.tsx', '.js', '.jsx'],
};
config.resolve.fallback = { fs: false, net: false, tls: false };
// Walletconnect configuration is blocking the build, pino-pretty needs to be added as an external
config.externals.push('pino-pretty');
//trying to reduce RAM usage
if (config.cache) {
config.cache = Object.freeze({
type: 'memory',
})
}
return config;
},
images: {
Expand Down
Loading

0 comments on commit e16840a

Please sign in to comment.