-
I'm running into some frontend trouble. How should I build the project: via gulp or webpack mix? Can anybody explain how to rebuild the front? |
Beta Was this translation helpful? Give feedback.
Answered by
eusonlito
Mar 26, 2024
Replies: 1 comment 1 reply
-
If you want to change styles or javascript you must rebuild the front assets: cd resources/views/assets
npm install --legacy-peer-deps
gulp build You can launch |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
XenoProxy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to change styles or javascript you must rebuild the front assets:
cd resources/views/assets npm install --legacy-peer-deps gulp build
You can launch
gulp watch
while you are testing changes and thengulp build
to compile assets.