File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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() `
You can’t perform that action at this time.
0 commit comments