Hi I have issue with new laravel project. I know it should be autocompile scss and js after command npm run watch. But it not recognized any changes and i don t know why.
My webpack.mix.js looks like this:
JavaScript
x
17
17
1
const mix = require('laravel-mix');
2
3
/*
4
|--------------------------------------------------------------------------
5
| Mix Asset Management
6
|--------------------------------------------------------------------------
7
|
8
| Mix provides a clean, fluent API for defining some Webpack build steps
9
| for your Laravel application. By default, we are compiling the Sass
10
| file for the application as well as bundling up all the JS files.
11
|
12
*/
13
14
mix.js('resources/js/app.js', 'public/js')
15
.sass('resources/sass/app.scss', 'public/css');
16
17
For compiling a changes i have to put every time npm run watch. Please if you know why let me know.
JavaScript
1
8
1
Log from console:
2
DONE Compiled successfully in 8794ms 7:57:59 AM
3
4
Asset Size Chunks Chunk Names
5
/css/app.css 179 KiB /js/app [emitted] /js/app
6
/js/app.js 1.66 MiB /js/app [emitted] /js/app
7
8
But this never changed in runtime….
Advertisement
Answer
Oh I run npm run watch on homestead server… When i try it in local enviroment it works fine. This is solution