- 将所有图片路径从绝对路径改为使用 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>
pkg-up 
Find the closest package.json file
Install
$ npm install pkg-up
Usage
/
└── Users
└── sindresorhus
└── foo
├── package.json
└── bar
├── baz
└── example.js
// example.js
const pkgUp = require('pkg-up');
(async () => {
console.log(await pkgUp());
//=> '/Users/sindresorhus/foo/package.json'
})();
API
pkgUp([options])
Returns a Promise<string> for the filepath, or Promise<null> if it couldn't be found.
pkgUp.sync([options])
Returns the filepath, or null if it couldn't be found.
options
Type: Object
cwd
Type: string
Default: process.cwd()
Directory to start from.
Related
- read-pkg-up - Read the closest package.json file
- pkg-dir - Find the root directory of an npm package
- find-up - Find a file by walking up parent directories
License
MIT © Sindre Sorhus