The Mix manifest does not exist when it does exist

后端 未结 10 1889
醉酒成梦
醉酒成梦 2020-12-23 20:56

For my admin panel I extract all the assets including the manifest-json.js to mix.setPublicPath(path.normalize(\'public/backend/\')).

All t

10条回答
  •  心在旅途
    2020-12-23 21:16

    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

提交回复
热议问题