Results 16 comments of Wesley

I see the same thing. On Android N locations keep coming through when the app is backgrounded, but this does not happen on Android O. Ideally, I would like this...

My setup is exactly the same as @moracabanas, **except that I am using Laravel Mix 6.0.6**. I am also running Laravel 8 on Sail with Node 15.5.0 and NPM 7.3.0....

**Update!** I read the Laravel Mix code a bit better.. It looks like the Webpack Config options can override the options set by `hmrOptions`... Which means we can simply do...

Quick tip: If you also want to reload the browser automatically and quickly when you edit `.blade.php` files (which I also still have lying around for some parts of my...

> This is not working for me. > I'm testing it in a new project: But HMR does work for you? (For example for Vue files and/or for CSS changes?)...

> Maybe this has something to do with the way I embade js script in a blade template: > `` It is very important that you use Laravel's global `mix`...

+1 also using roots/bedrock and composer

+1 In the meantime I did this to work around it: ``` add_filter('shortcode_atts_product_categories', function ($out) { $out['orderby'] = 'menu_order'; $out['order'] = 'asc'; return $out; }); ```

I guess this is not coming anymore?

@MaximeThoonsen yes I have something running locally which seems to work ok for my purposes. But it might require some tweaking and I'm not sure if it works as well...