Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't resolve slash and tilde paths twice (#1993)
Fix "Cannot resolve dependency" errors for valid slash and tilde paths. Before: /src/js/index.js -> /home/user/my-project/src/js/index.js -> /home/user/my-project/home/user/my-project/src/js/index.js Error: Cannot resolve dependency /home/user/my-project/src/js/index.js After: /src/js/index.js -> /home/user/my-project/src/js/index.js The code already has a way for asset-handlers to signal to the bundler that a dependency has been resolved to an absolute path, but it isn't being used. fixes #1555 fixes #1986
- Loading branch information