1
356693212 2023-02-01 10:43:35 +08:00
谷歌一下很难吗,rollup 最新的已经修改了 hash 算法了。
|
3
karott7 2023-02-01 13:36:36 +08:00
import { createHash } from 'node:crypto'
const hash = createHash('sha256').update(content).digest('base64') |
4
Rrrrrr 2023-02-01 13:43:55 +08:00
服了,发个 github 的 url 都发不出。
|
5
Rrrrrr 2023-02-01 13:43:59 +08:00
|
9
Rrrrrr 2023-02-01 13:49:54 +08:00
vite/issues/6928 这里有中文的
|
11
Rrrrrr 2023-02-01 14:01:09 +08:00
A hash based only on the content of the final generated chunk, including transformations in renderChunk and any referenced file hashes.
它是根据生成后的 chunk 来的,所以都会变,没毛病 |
12
jaween OP |
13
aikilan 2023-02-02 09:06:34 +08:00
文件内容没改过,修改 hash 的需求场景是啥?。。。
|