From 47d6d65955af8a7de6c047c9b99b3eab9448b118 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Thu, 13 Apr 2023 13:13:40 +0200 Subject: [PATCH] fix path --- apps/remix-ide/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/webpack.config.js b/apps/remix-ide/webpack.config.js index 2f1a1a91a1..a10a6a3e47 100644 --- a/apps/remix-ide/webpack.config.js +++ b/apps/remix-ide/webpack.config.js @@ -25,7 +25,7 @@ const loadLocalSolJson = async () => { info.builds = info.builds.slice(-1) const buildurl = `https://solc-bin.ethereum.org/wasm/${info.builds[0].path}`; console.log(`Copying... ${buildurl} to assets`) - const path = `./dist/apps/remix-ide/assets/js/soljson.js`; + const path = `./apps/remix-ide/src/assets/js/soljson.js`; axios({ method: 'get', url: buildurl,