使用 Docker 搭建的 LNMP 环境 相关 Docker 文件
初始化后访问首页是正常的, 但是通过 php artisan make:auth
Login 页面的 css 和 JS 就加载不出来了.
加载 css 的路径-Laravel5.5 都是经过函数处理的
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
文件权限为 root root 777 ps: 我试过 www-data www-data 777 也不行
1
Liang 2017-11-09 23:01:59 +08:00 via iPhone
你自己看看到底有这个文件没。
另外: 1.root 是不是在 public 2.执行 gulp 了吗 |
2
xoxo419 OP @Liang 文件是存在的
public 目录结构 ``` public | - css |----| app.css | - js |----|app.js ``` root root 777 全部文件包括 public gulp 没有执行. 这个命令必须要执行? |
3
sexrobot 2017-11-10 01:00:57 +08:00
```bash
php artisan vendor:publish ``` |
6
vex2 2017-11-10 09:19:05 +08:00
npm install
npm run production |