[Vuejs]-Webpack mix, Vue – output files on cdn subdomain

0👍

After some more experimenting, I think I found a solution. The issue might be caused by laravel mix which set’s the “public” folder.

I added:

mix.setPublicPath('public-cdn/');

and it seems to be working well now.

Leave a comment