diff --git a/apps/web/webpack.config.js b/apps/web/webpack.config.js index 8e3dd3b..3795b47 100644 --- a/apps/web/webpack.config.js +++ b/apps/web/webpack.config.js @@ -6,5 +6,8 @@ module.exports = composePlugins(withNx(), withReact(), (config) => { // Update the webpack config as needed here. // e.g. `config.plugins.push(new MyPlugin())` config.ignoreWarnings = [/Failed to parse source map/] + config.resolve.fallback = { + crypto: false, + } return config })