-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dist content-hash different on different path #2807
Comments
You can just create two vue projects with vue-cli 3.0 in different directory (using the above settings), then both run Besides, when do not use babel alongside, the content hashes of the two app.js will be the same. |
ping..., has anyone came up with a solution? |
@zhangbobell this is a problom since update to vue cli3, the same issue with #1728. No one know how to fix it... |
This is probably related to some part of the code (ours or a loader or plugin) using absolute paths to require files. Since the hashes are calculated from the source code, if we have
somewhere in the generated source, the has will be different. Some background: https://medium.com/@the_teacher/webpack-different-assets-hashes-on-different-machines-the-problem-the-solution-ec6383983b99 |
@LinusBorg Thanks for your reply. Yes, I'd read the blog before, link from another issue. And I guess it has something to do with babel-polyfill since the hash become identical when I do not choose And also I'd searched in babel issues, and someone has encounter with it before. But not really same with ours. So.. Just a guess. I could not easily debug it, so I submit this issue. Could anyone lend some help ? |
@zhouxinyong Thanks your discussion, seems really not very easy to locate the problem. Hope someone knows it. |
It's due to this line:
I think we need to expose an option here. |
@sodatea Maybe this has no impact about the bug ? I just modified this line of code, the content hash did not changed. |
@zhangbobell Explicitly setting |
@sodatea Oh, sorry, I just rerun without clearing the cache. I've test just now, it's really the same. Thanks very much. Maybe I could came up with a Pull Request to fix it. 😄 Or expose an option ? |
@zhangbobell The best solution is to provide a good default and expose an option for customization. We use |
@sodatea Thanks for your repairing for the 'bug', I was a little busy before Chinese Spring Festival, so I did not try this PR. Thank you very much ! |
With
My
I did |
I think you are missing an array level, see: |
Version
3.0.5
Reproduction link
https://github.com/zhangbobell/vue-cli-content-hash-reproduce
Node and OS info
Node v8.11.2 / yarn 1.10.1 / macOS 10.14 (18A391)
Steps to reproduce
Do the following 4 steps in two machines or in one machine different path, compare the content-hash in
dist/js/app.<content-hash>.js
, you will find them not the same.git clone https://github.com/zhangbobell/vue-cli-content-hash-reproduce.git cd vue-cli-content-hash-reproduce yarn NODE_ENV=production yarn build
I've test in two machines, the result shows below:
Result on machine A (app.js content-hash is
efe1aa10
):Result on machine B (app.js content-hash is
d9410857
):What is expected?
The two content-hash of
app.js
on two machines will be the same.What is actually happening?
They are different
The following is my Vue-Cli settings:

I have debug this for some hours, but did not have any valuable result. But I'm sure it has something to do with babel-polyfill, since the difference disappears when I choose No with
Use Babel alongside TypeScript for auto-detected polyfills? (Y/n)
prompt.It seems that babel-polyfill will inject absolute path into the compiled js, that lead this bug.
I wish someone could help to debug this.
Thanks for providing a awesome tool !
The text was updated successfully, but these errors were encountered: