The serverless downloadDocumentation command can be used to download the final/deployed documentation directly from AWS. This release adds support to (optionally) generate a documentation preview locally - without the need of deploying it to AWS.
Fixes generating a documentation preview locally, with serverless generateDocumentation
command, when the template contains a reference to another local model with the $ref keyword.
For example:
$ref: "{{model: Address}}"
needed to be
$ref: "#/components/schemas/Address"
See more here