Skip to content

Commit d8262c4

Browse files
authored
Fix trailing whitespace
1 parent ef8d883 commit d8262c4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frontend/asset_mapper.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ this can be done by importing its full URL, like from a CDN:
200200
201201
import { Alert } from 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/+esm';
202202
203-
But yikes! Needing to include that URL is a pain! Instead, we can add this package
204-
to our "importmap" via the ``importmap:require`` command. This command can be used
203+
But yikes! Needing to include that URL is a pain! Instead, we can add this package
204+
to our "importmap" via the ``importmap:require`` command. This command can be used
205205
to add any `npm package`_:
206206

207207
.. code-block:: terminal
@@ -225,8 +225,8 @@ This adds the ``bootstrap`` package to your ``importmap.php`` file::
225225
such as ``@popperjs/core``. The ``importmap:require`` command will add both the
226226
main package *and* its dependencies.
227227

228-
After adding/updating the package in your ``importmap.php`` file, all new packages
229-
will be downloaded into an ``assets/vendor/`` directory.
228+
After adding/updating the package in your ``importmap.php`` file, all new packages
229+
will be downloaded into an ``assets/vendor/`` directory.
230230

231231
Now you can import the ``bootstrap`` package like usual:
232232

@@ -235,8 +235,8 @@ Now you can import the ``bootstrap`` package like usual:
235235
import { Alert } from 'bootstrap';
236236
// ...
237237
238-
It's recommended to ignore the ``assets/vendor/`` directory and not commit it to
239-
your repository. Therefore, you'll need to run the ``php bin/console importmap:install``
238+
It's recommended to ignore the ``assets/vendor/`` directory and not commit it to
239+
your repository. Therefore, you'll need to run the ``php bin/console importmap:install``
240240
command to download the files on other computers if some files are missing:
241241

242242
.. code-block:: terminal

0 commit comments

Comments
 (0)