diff --git a/apps/remix-ide/src/app/compiler/compiler-imports.js b/apps/remix-ide/src/app/compiler/compiler-imports.js index 43840e5962..5b3077b008 100644 --- a/apps/remix-ide/src/app/compiler/compiler-imports.js +++ b/apps/remix-ide/src/app/compiler/compiler-imports.js @@ -90,7 +90,7 @@ module.exports = class CompilerImports extends Plugin { if (this.fileManager) { const workspace = this.fileManager.currentFileProvider() const path = targetPath || type + '/' + cleanUrl - if (workspace) workspace.addExternal(path, content, url) + if (workspace) workspace.addExternal('.deps/' + path, content, url) } cb(null, content) })