Reputation: 552
I have an application in which I am developing using Laravel + VueJs with Laravel mix (both back and front end within the same folder structure) and now I want to start using Quasar.
Is it possible to integrate the Quasar CLI together with the Laravel Mix and continue using the same folder structure? If so, how to generate the build script?
Will there be any changes in the deploy script?
Upvotes: 0
Views: 2490
Reputation: 700
I assume that Quasar CLI builds all assets into static files; js / css. My opinion is compiling Mix's assets first and pass the out put (js / css) to Quasar by configuring at quasar.config.js
then running quasar build
.
Or It might able to config quasar.config.js
to load all Mix' assets.
this docs might help https://quasar-framework.org/guide/app-quasar.conf.js.html
Upvotes: 2