Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cba52cc

Browse files
andrecadetejaviereguiluz
authored andcommitted
Update Package name of React Preset for Babel
Seems the React Preset for Babel has been renamed and the previous package discontinued (at least that's my interpretation seeing v7+ only available in the new one). Ran into this issue by simply following this guide and getting: ``` root@afb35030f337:/var/www/code# yarn encore dev yarn run v1.10.1 warning package.json: No license field $ /var/www/code/node_modules/.bin/encore dev Running webpack ... Error: Install @babel/preset-react to use enableReactPreset() yarn add @babel/preset-react@^7.0.0 --dev ``` After swapping dependencies ("babel-preset-react" to "@babel/preset-react"), it works as expected: ``` root@afb35030f337:/var/www/code# yarn encore dev yarn run v1.10.1 warning package.json: No license field $ /var/www/code/node_modules/.bin/encore dev Running webpack ... DONE Compiled successfully in 518ms ``` No code examples shared since you literally just need to follow the "Installing Encore" guide (with or without Flex) and then this "Enabling React.js" guide to run into the issue.
1 parent ccbf9d5 commit cba52cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/encore/reactjs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Using React? First enable support for it in ``webpack.config.js``:
55

66
.. code-block:: terminal
77
8-
$ yarn add --dev babel-preset-react
8+
$ yarn add --dev @babel/preset-react
99
$ yarn add react react-dom prop-types
1010
1111
Enable react in your ``webpack.config.js``:

0 commit comments

Comments
 (0)