bff.prefix

  • 类型: string

  • 默认值: /api

TIP

请先在当前项目的根目录使用 new 命令 启用 BFF 功能。

默认情况下,BFF API 目录下的路由访问前缀是 /api, 如下目录结构:

api
└── hello.ts

api/hello.ts 访问时对应的路由为 localhost:8080/api/hello

该配置选项可以修改默认的路由前缀:

modern.config.ts
export default defineConfig({
  bff: {
    prefix: '/api-demo',
  },
});

对应的 api/hello.ts 访问路由为 localhost:8080/api-demo/hello