- 将所有图片路径从绝对路径改为使用 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>
17 lines
813 B
Markdown
17 lines
813 B
Markdown
# React Router
|
|
|
|
The `react-router` package is the heart of [React Router](https://github.com/remix-run/react-router) and provides all
|
|
the core functionality for both
|
|
[`react-router-dom`](https://github.com/remix-run/react-router/tree/main/packages/react-router-dom)
|
|
and
|
|
[`react-router-native`](https://github.com/remix-run/react-router/tree/main/packages/react-router-native).
|
|
|
|
If you're using React Router, you should never `import` anything directly from
|
|
the `react-router` package, but you should have everything you need in either
|
|
`react-router-dom` or `react-router-native`. Both of those packages re-export
|
|
everything from `react-router`.
|
|
|
|
If you'd like to extend React Router and you know what you're doing, you should
|
|
add `react-router` **as a peer dependency, not a regular dependency** in your
|
|
package.
|