UNPKG

rerumaccusamus

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

41 lines (28 loc) 707 B
--- sidebar_label: prefix sidebar_position: 1 --- # `bff.prefix` :::info 适用的工程方案 * MWA ::: * 类型:`string` * 默认值:`/api` :::caution 注意 MWA 项目需要请确保使用【[new](/docs/apis/commands/mwa/new)】 启用了 BFF 功能。 ::: 默认情况下,BFF API 目录下的路由访问前缀是 `/api`, 如下目录结构: ```bash api └── hello.ts ``` `api/hello.ts` 访问时对应的路由为 `localhost:8080/api/hello`。 该配置选项可以修改默认的路由前缀: ```js title="modern.config.js" export default defineConfig({ bff: { prefix: '/api-demo' } }) ``` 对应的 `api/hello.ts` 访问路由为 `localhost:8080/api-demo/hello`。