Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix capitalization typos #16309

Merged
merged 1 commit into from
Mar 29, 2024
Merged
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
8 changes: 4 additions & 4 deletions docs/guide/backend-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ If you need a custom integration, you can follow the steps in this guide to conf

- A `<link rel="stylesheet">` tag for each file in the entry point chunk's `css` list
- Recursively follow all chunks in the entry point's `imports` list and include a
`<link rel="stylesheet">` tag for each css file of each imported chunk.
- A tag for the `file` key of the entry point chunk (`<script type="module">` for Javascript,
or `<link rel="stylesheet">` for css)
- Optionally, `<link rel="modulepreload">` tag for the `file` of each imported Javascript
`<link rel="stylesheet">` tag for each CSS file of each imported chunk.
- A tag for the `file` key of the entry point chunk (`<script type="module">` for JavaScript,
or `<link rel="stylesheet">` for CSS)
- Optionally, `<link rel="modulepreload">` tag for the `file` of each imported JavaScript
chunk, again recursively following the imports starting from the entry point chunk.

Following the above example manifest, for the entry point `main.js` the following tags should be included in production:
Expand Down