- 将所有图片路径从绝对路径改为使用 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>
33 lines
614 B
Markdown
33 lines
614 B
Markdown
# unique-string [](https://travis-ci.org/sindresorhus/unique-string)
|
|
|
|
> Generate a unique random string
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install unique-string
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const uniqueString = require('unique-string');
|
|
|
|
uniqueString();
|
|
//=> 'b4de2a49c8ffa3fbee04446f045483b2'
|
|
```
|
|
|
|
|
|
## API
|
|
|
|
### uniqueString()
|
|
|
|
Returns a 32 character unique string. Matches the length of MD5, which is [unique enough](https://stackoverflow.com/a/2444336/64949) for non-crypto purposes.
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](https://sindresorhus.com)
|