react-router 怎么设置 basepath 设置网站基础路径

现在网站根路径是 http://localhost:5173/

如果要改为 http://localhost:5173/chat/ 的话,可以这么改

vite.config.ts:添加 base

export default defineConfig({
  base: '/chat'
});

react-router.config.ts:添加 basename

export default {
  ssr: true,
  basename: '/chat',
} satisfies Config;

解决,不用改所有跳转代码路径

Logo

Agent 垂直技术社区,欢迎活跃、内容共建。

更多推荐