Skip to content

Commit be19381

Browse files
authored
docs(configuration): Update index.mdx (#5282)
The CreateApp.dev utility is immensely useful yet buried at the bottom of this page. I wish I'd had it from when I first started working with Webpack. So I've given it a much high prominence.
1 parent 3f2b148 commit be19381

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/content/configuration/index.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@ contributors:
2222

2323
Out of the box, webpack won't require you to use a configuration file. However, it will assume the entry point of your project is `src/index.js` and will output the result in `dist/main.js` minified and optimized for production.
2424

25+
T> [createapp.dev](https://createapp.dev/webpack) is an online tool for creating custom webpack configuration. It allows you to select various features that will be combined and added to resulting configuration file. Also, it generates an example project based on provided webpack configuration that you can review in your browser and download.
26+
2527
Usually your projects will need to extend this functionality, for this you can create a `webpack.config.js` file in the root folder and webpack will automatically use it.
2628

2729
All the available configuration options are specified below.
2830

2931
T> New to webpack? Check out our guide to some of webpack's [core concepts](/concepts) to get started!
3032

31-
## Use different configuration file
33+
## Use a different configuration file
3234

33-
If for some reason you want to use different configuration file depending on certain situations you can change this via command line by using the `--config` flag.
35+
If for some reason you want to use different configuration file depending on certain situations, you can change this via command line by using the `--config` flag.
3436

3537
**package.json**
3638

@@ -1170,4 +1172,4 @@ found 0 vulnerabilities
11701172
Congratulations! Your new webpack configuration file has been created!
11711173
```
11721174

1173-
[createapp.dev - create a webpack configuration in your browser](https://createapp.dev/webpack) is an online tool for creating custom webpack configuration. It allows you to select various features that will be combined and added to resulting configuration file. Also, it generates an example project based on provided webpack configuration that you can review in your browser and download.
1175+

0 commit comments

Comments
 (0)