I'm using laravel and vue , but when i try to load the page the data in home.vue doesnt apper is welcome.blade.php and this error appear in the console: `GET http://localhost/resources/js/app.js net::ERR_ABORTED 404 (Not Found)
my webpack file is:
mix.js('resources/js/app.js', 'public/js')
.vue()
.sass('resources/sass/app.scss', 'public/css');
and my welcome.blade.php is:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<router-view></router-view>
<script src="/resources/js/app.js"></script>
</body>
</html>
my app.js path is: /resources/js/app.js