From 54359374f2c43c9feb747edcb8a5ec70b3006609 Mon Sep 17 00:00:00 2001 From: Kat Hagan Date: Thu, 30 May 2024 23:37:10 -0400 Subject: [PATCH] try also adding buffer module --- webpack.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 95222ab12..56374c96d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -83,7 +83,14 @@ module.exports = () => { }, plugins: [ new NodePolyfillPlugin({ - includeAliases: ['Buffer', 'path', 'process', 'stream', 'util'], + includeAliases: [ + 'Buffer', + 'buffer', + 'path', + 'process', + 'stream', + 'util', + ], }), new HtmlWebpackPlugin({ 'build-platform': process.platform,