Laravel Mix Vue不起作用并且找不到CSS

问题描述

这是我的脚步。

PHP artisan ui vue
npm install
npm运行dev

app.blade

webpack

我确定js / app.js和css / app.css路径正确。
但我仍然有html front,我错过了哪一步?

解决方法

尝试asset()

<link href="{{ asset('css/main.css') }}" rel="stylesheet">
<script`` src="{{ asset('js/app.js') }}"></script>

参考链接https://laravel.com/docs/7.x/helpers#method-asset