Skip to content

Commit cef53b2

Browse files
committed
Update UPGRADE.md
1 parent 3093172 commit cef53b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

UPGRADE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ You will need to update the environment variables that are explicitly exposed in
319319
+ MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
320320
```
321321

322-
You will also need to update these references in your JavaScript code to use the new variable name and Vite syntax:
322+
You will also need to update these references in your JavaScript code to use the new variable name and Node syntax:
323323

324324
```diff
325325
- key: import.meta.env.VITE_PUSHER_APP_KEY,
@@ -328,12 +328,12 @@ You will also need to update these references in your JavaScript code to use the
328328
+ cluster: process.env.MIX_PUSHER_APP_CLUSTER,
329329
```
330330

331-
### Import your CSS from your JavaScript entry point(s)
331+
### Remove CSS imports from your JavaScript entry point(s)
332332

333-
If you are importing your CSS via JavaScript, you will need to remove this:
333+
If you are importing your CSS via JavaScript, you will need to remove them:
334334

335335
```js
336-
-import '../css/app.css'
336+
- import '../css/app.css'
337337
```
338338

339339
### Replace `@vite` with `mix()`

0 commit comments

Comments
 (0)