It depends on your frontend development workflow.
app’s /resources
.app’s /public
.Your public asset keep on app’s /public
. Define your public on app's service provider
under boot
method. While installing on the server, we will run artisan vendor:publish --tag=public
. All your public will be copied to /public/vendor/vendor-name/project-name/
.
On development server, you have 2 choices:
app’s public
and /public/vendor/vendor-name/project-name/
.app’s public
to /public/vendor/vendor-name/project-name/
. If you generate your app from RVsitebuilder app generator, we already configure it for you on webpack.base.js
.