Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/latest/concepts/ahead-of-time-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ metadata for Fresh.

Any other static files generated by plugins will be stored in the
`_fresh/static` subfolder. They will be served the same as other
[static files](/docs/concepts/static-files.md).
[static files](/docs/concepts/static-files).

> [info]: The `_fresh` folder should not be committed to the repository. Add an
> entry in the `.gitignore` file to ensure that it is not committed. Create that
Expand Down
4 changes: 2 additions & 2 deletions docs/latest/concepts/middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Each middleware gets passed a `next` function in the context argument that is
used to trigger child handlers. The `ctx` also has a `state` property that can
be used to pass arbitrary data to downstream (or upstream) handlers. This
`state` is included in `PageProps` by default, which is available to both the
special [\_app](/docs/concepts/app-wrapper.md) wrapper and normal
[routes](/docs/concepts/routes.md). `ctx.state` is normally set by modifying its
special [\_app](/docs/concepts/app-wrapper) wrapper and normal
[routes](/docs/concepts/routes). `ctx.state` is normally set by modifying its
properties, e.g. `ctx.state.loggedIn = true`, but you can also replace the
entire object like `ctx.state = { loggedIn: true }`.

Expand Down
Loading