- 将所有图片路径从绝对路径改为使用 process.env.PUBLIC_URL - 修复 HomePage.tsx 中所有图片引用 - 修复 CoursePage.tsx 中所有图片引用 - 确保图片在 GitHub Pages 上正确加载 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
575 B
Markdown
15 lines
575 B
Markdown
randombytes
|
|
===
|
|
|
|
[](https://www.npmjs.org/package/randombytes) [](https://travis-ci.org/crypto-browserify/randombytes)
|
|
|
|
randombytes from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues
|
|
|
|
```js
|
|
var randomBytes = require('randombytes');
|
|
randomBytes(16);//get 16 random bytes
|
|
randomBytes(16, function (err, resp) {
|
|
// resp is 16 random bytes
|
|
});
|
|
```
|