# app/app.config.ts

> 

Use this file for static app configuration.

Today its main job is app-level middleware registration:

```ts
export default {
  middleware: ['request-meta']
};
```

Keep request-aware code out of this file. Use `app/loader.ts` for anything that depends on the incoming request, session, or URL.
