File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ Advanced Webpack Config
3
3
4
4
Quite simply, Encore generates the Webpack configuration that's used in your
5
5
``webpack.config.js `` file. Encore doesn't support adding all of Webpack's
6
- `configuration options `_, because many can be easy added on your own.
6
+ `configuration options `_, because many can be easily added on your own.
7
7
8
8
For example, suppose you need to set `Webpack's watchOptions `_ setting. To do that,
9
- modify the config it after fetching the it from Encore:
9
+ modify the config after fetching the it from Encore:
10
10
11
11
.. code-block :: javascript
12
12
@@ -23,7 +23,6 @@ modify the config it after fetching the it from Encore:
23
23
// other examples: add an alias or extension
24
24
// config.resolve.alias.local = path.resolve(__dirname, './resources/src');
25
25
// config.resolve.extensions.push('json');
26
-
27
26
28
27
// export the final config
29
28
module .exports = config;
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ loaded on every page with the following content:
79
79
80
80
.. tip ::
81
81
82
- The ``global `` variable is a special way of setting things pn the ``window ``
82
+ The ``global `` variable is a special way of setting things in the ``window ``
83
83
variable. In a web context, using ``global `` and ``window `` are equivalent,
84
84
except that ``window.jQuery `` won't work when using ``autoProvidejQuery() ``.
85
85
In other words, use ``global ``.
You can’t perform that action at this time.
0 commit comments