You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+11
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,17 @@ gem 'preact-rails'
11
11
2. Install the gems by running `bundle install`
12
12
3. Install Preact by running `yarn add preact`
13
13
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
+
```
14
25
5. Install the Preact UJS driver by running `yarn add preact_ujs` or `npm i preact_ujs`
15
26
6. Include your Preact components in your application.js
16
27
Update `app/javascript/packs/application.js`, add the following lines:
0 commit comments