replace hash
# or yarn
$ npm install
$ npm run build --watch
$ npm run start
Configure in .umirc.js
,
export default {
plugins: [
['umi-plugin-rehash', {
hash: RELEASE_VERSION // 修改的hash
}],
],
}
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|---|---|---|---|
hash | 自定义的hash | string | 无 | |
mode | hash模式:umi.xxxx.js query模式:umi.js?xxxxx | string | 'hash' | 'hash' 或 'query' |
MIT