For my admin panel I extract all the assets including the manifest-json.js to mix.setPublicPath(path.normalize(\'public/backend/\')).
manifest-json.js
mix.setPublicPath(path.normalize(\'public/backend/\'))
All t
In a shared hosting environment, Remove the mix e.g. {!! script(mix('js/manifest.js')) !!}
should be changed to
{!! script('js/manifest.js') !!}
This actually works for me