Level 53
Did you copy your fonts/ to the correct path in public/? If not, the processed css will not find the files.
1 like
I am using laravel mix to compile the sass files in laravel.
My webpack.mix.js file contains:
mix.js('resources/assets/admin/js/app.js', 'public/js/admin.js')
.sass('resources/assets/admin/sass/app.scss', 'public/css/admin.css');
When I compile the files I get css files with wrong path to the fonts and images. e.g.:
url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot)
whereas the url should start with '../fonts' because the compiled files are under following folder:
Please or to participate in this conversation.