laravel he Mix manifest does not exist.


参考文档:https://www.cnblogs.com/sgm4231/p/11010325.html 

这是因为我们在 resources/views/layouts/app.blade.php 中使用 mix() 方法,而我们还未运行 Laravel Mix 进行编译,找不到 mix-manifest.json 文件,所以报错,没事接下来我们来解决这个问题。

使用 Yarn 来安装依赖,在这之前,因为国内的网络原因,我们还需为 Yarn 配置安装加速:
          yarn config set registry https://registry.npm.taobao.org

注意:阿里云的镜像加速域名似乎改成私有账号域名了,所以需要配置阿里云的镜像资源,需要去注册阿里云的个人账号。

使用 Yarn 安装依赖

           yarn install

相关