Skip to content

Fix minor typos in Encore Webpack #12588

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 4, 2019
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 frontend/encore/advanced-config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ without using the ``encore`` command you will encounter the following error:
Error: Encore.setOutputPath() cannot be called yet because the runtime environment doesn't appear to be configured. Make sure you're using the encore executable or call Encore.configureRuntimeEnvironment() first if you're purposely not calling Encore directly.
The reason behind that message is that Encore needs to know a few thing before
The reason behind that message is that Encore needs to know a few things before
being able to create a configuration object, the most important one being what
the target environment is.

Expand Down
2 changes: 1 addition & 1 deletion frontend/encore/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ like ``/myAppSubdir``), you will need to configure that when calling ``Encore.se
+ .setPublicPath('/myAppSubdir/build')
+ // this is now needed so that your manifest.json keys are still `build/foo.js`
+ // (which is a file that's used by Symfony's asset function)
+ // (which is a file that's used by Symfony's `asset()` function)
+ .setManifestKeyPrefix('build')
;
Expand Down
2 changes: 1 addition & 1 deletion frontend/encore/postcss.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Next, create a ``postcss.config.js`` file at the root of your project:
}
}
Then, Enable the loader in Encore!
Then, enable the loader in Encore!

.. code-block:: diff
Expand Down