Laravel 5.7 FontAwesome 5.7.1
I installed fontawesome via npm and imported in app.scss Everything is fine, but problem is that I removed public/ from my url in order to access without this specific word / www.domain.com/public
So now my app trying to access fontawesome by this address https://test.local/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2?3638e62 but this is wrong path because there should be public/ folder in address it must be so https://test.local/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2?3638e62 If I manually add public word to address then I access to font awesome
My webpack file
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.options({ processCssUrls: false });
Any help