Skip to content

chore: fix typo #4022

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

Merged
merged 1 commit into from
Nov 13, 2021
Merged
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 examples/client/reconnect/false/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
// ...
devServer: {
client: {
reconect: false,
reconnect: false,
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion examples/client/reconnect/number/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
// ...
devServer: {
client: {
reconect: 2,
reconnect: 2,
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion examples/client/reconnect/true/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
// ...
devServer: {
client: {
reconect: true,
reconnect: true,
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion examples/compression/false/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Website gzip compression makes it possible to reduce the file size of a file
to roughly 30% of its original size before the files are sent to the browser.

It is enabled by default. To disable it set `compresss` option to `false`.
It is enabled by default. To disable it set `compress` option to `false`.

## false

Expand Down