Skip to content
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions website/docs/api/plugin-methods/lifecycle-apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,12 @@ module.exports = function (context, options) {
};
```

Tags will be added as follows:

* `headTags` will be inserted before the closing `</head>` tag after scripts added by config.
* `preBodyTags` will be inserted after the opening `<body>` tag before any child elements.
* `postBodyTags` will be inserted before the closing `</body>` tag after all child elements.

## `getClientModules()` {#getClientModules}

Returns an array of paths to the [client modules](../../advanced/client.md#client-modules) that are to be imported into the client bundle.
Expand Down