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

Fix broken link, fixing typos #496

Merged
merged 1 commit into from Mar 11, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -146,7 +146,7 @@ export function mergeWebpackConfig(
removePluginsFromWebpackConfig(resultingWebpackConfig, remove);
}

// Add after removing to preserve any plugins explicitely added via the Craco config
// Add after removing to preserve any plugins explicitly added via the Craco config
if (add) {
addPlugins(resultingWebpackConfig, add);
}
Expand Down
2 changes: 1 addition & 1 deletion website/plugins/plugins.md
Expand Up @@ -17,7 +17,7 @@ Here is a list of some CRACO plugins maintained by the community.
- [craco-image-optimizer-plugin](https://github.com/kkulbae/craco-image-optimizer-plugin) by [@kkulbae](https://github.com/kkulbae)
- [craco-interpolate-html-plugin](https://github.com/kkulbae/craco-interpolate-html-plugin) by [@kkulbae](https://github.com/kkulbae)
- [craco-less](https://github.com/DocSpring/craco-less) by [@DocSpring](https://github.com/DocSpring)
- [craco-linaria](https://github.com/jedmao/craco-linaria) by [jedmao](https://github.com/jedmao)
- [craco-linaria](https://github.com/jednano/craco-linaria) by [jednano](https://github.com/jednano)
- [craco-parameter-decorator](https://github.com/org-redtea/craco-parameter-decorator) by [@Hokid](https://github.com/Hokid)
- [craco-plugin-env](https://github.com/ponjs/craco-plugin-env) by [@ponjs](https://github.com/ponjs)
- [craco-plugin-react-hot-reload](https://github.com/HasanAyan/craco-plugin-react-hot-reload) by [@hasanayan](https://github.com/hasanayan)
Expand Down
2 changes: 1 addition & 1 deletion website/recipes/use-ant-design.md
@@ -1,7 +1,7 @@
# Use Ant Design

```js title="craco.config.js"
// Offical documentation available at: https://github.com/FormAPI/craco-antd
// Official documentation available at: https://github.com/FormAPI/craco-antd

module.exports = {
plugins: [
Expand Down
2 changes: 1 addition & 1 deletion website/recipes/use-less-loader.md
@@ -1,7 +1,7 @@
# Use less-loader

```js title="craco.config.js"
// Offical documentation available at: https://github.com/FormAPI/craco-less
// Official documentation available at: https://github.com/FormAPI/craco-less

module.exports = {
plugins: [
Expand Down
2 changes: 1 addition & 1 deletion website/recipes/use-linaria.md
@@ -1,7 +1,7 @@
# Use Linaria

```js title="craco.config.js"
// Offical documentation available at: https://github.com/jedmao/craco-linaria
// Official documentation available at: https://github.com/jednano/craco-linaria

module.exports = {
plugins: [{ plugin: require('craco-linaria') }],
Expand Down