Skip to content

Commit 1e4499c

Browse files
authored
Update README.md
1 parent 067746f commit 1e4499c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ gem 'preact-rails'
1111
2. Install the gems by running `bundle install`
1212
3. Install Preact by running `yarn add preact`
1313
4. To transpile JSX, you need a Babel plugin that converts it to valid JavaScript code. Install [@babel/plugin-transform-react-jsx](https://babeljs.io/docs/en/babel-plugin-transform-react-jsx#installation) by running `yarn add --dev @babel/plugin-transform-react-jsx`
14+
Once installed, you need to specify the function for JSX that should be used. Your .babelrc/babel.config.js should include the following plugin description
15+
```json
16+
{
17+
"plugins": [
18+
["@babel/plugin-transform-react-jsx", {
19+
"pragma": "h",
20+
"pragmaFrag": "Fragment",
21+
}]
22+
]
23+
}
24+
```
1425
5. Install the Preact UJS driver by running `yarn add preact_ujs` or `npm i preact_ujs`
1526
6. Include your Preact components in your application.js
1627
Update `app/javascript/packs/application.js`, add the following lines:

0 commit comments

Comments
 (0)