# 运行时配置
Fes.js 约定 `src/app.js` 为运行时配置文件。运行时配置和配置的区别是他跑在浏览器端,因此我们可以在这里写函数、引入浏览器端依赖项等等,注意不要引入 node 端依赖项。
## 运行时为啥需要配置?
Fes.js 框架跟传统开发模式不一样。传统开发模式中用户编写 entry 文件,而 Fes.js 中 entry 文件由框架生成,用户就不必要编写胶水代码。内置插件和其他插件提供的一些运行时功能提供用户或者其他插件自定义。
例如:
plugin-access 插件定义运行时配置项:
```js
api.addRuntimePluginKey(() => 'access');
```
plugin-access 插件读取配置项:
```js
const runtimeConfig = plugin.applyPlugins({
key: 'access',
type: ApplyPluginsType.modify,
initialValue: {},
});
```
而用户则只需要配置:
```js
// app.js
import { defineRuntimeConfig } from '@fesjs/fes';
export default defineRuntimeConfig({
access: memo => ({
...memo
unAccessHandler({
router, to, from, next
}) {
// 处理逻辑
},
noFoundHandler({
router, to, from, next
}) {
// 处理逻辑
},
}),
});
```
## 配置智能提示
配置可以单独导出,也可以通过 `defineRuntimeConfig` 工具函数获取类型提示。
方式一(推荐,有类型提示):
```js
// app.js
import { defineRuntimeConfig } from '@fesjs/fes';
export default defineRuntimeConfig({
access: memo => ({
...memo
unAccessHandler({
router, to, from, next
}) {
// 处理逻辑
},
noFoundHandler({
router, to, from, next
}) {
// 处理逻辑
},
}),
// ...其他配置项
});
```
方式二:
```js
// app.js
export const access = memo => ({
...memo
unAccessHandler({
router, to, from, next
}) {
// 处理逻辑
},
noFoundHandler({
router, to, from, next
}) {
// 处理逻辑
},
});
```
## 配置项
### beforeRender
beforeRender(lastOpts)
在渲染之前执行,执行`action`过程中显示 `loading` 配置的组件,执行结果作为参数 `initialState` 传给 `modifyClientRenderOpts`。
示例:
```js
// app.js
import { access } from '@fesjs/fes';
import PageLoading from '@/components/PageLoading';
import UserCenter from '@/components/UserCenter';
export function beforeRender(lastOpts) {
return {
...lastOpts,
loading: