如何在 next.js 中设置初始路由?

How can I set up the initial route in next.js?

如果我在react中设置初始路由,就会有首页

package.json

{
  "name": "frontend",
  "version": "0.1.0",
  "private": true,
  "homepage": "http://localhost:3001/admin",
...

next.js怎么样?
有解决办法吗?

在 nextjs 中你可以使用重写 - https://nextjs.org/docs/api-reference/next.config.js/rewrites

你的重写看起来像这样。

module.exports = {
  async redirects() {
    return [
      {
        source: '/',
        destination: '/admin',
        permanent: true,
      },
    ]
  },
}