node -v): 9.9.0npm -v): 5.6.0I am using url processing with jpeg and webp and since a while (between mix 2.0.0 and 2.1.11), it's not working anymore with webp.
here is my scss code :
.no-webp .custom-background {
background-image: url('../img/custom.jpeg');
}
.webp .custom-background {
background-image: url('../img/custom.webp');
}
css generated with laravel mix 2.1.11 :
.no-webp .custom-background {
background-image: url(/images/custom.jpeg?47ab273…);
}
.webp .custom-background {
background-image: url(//images/custom.webp?1cb1372…);
}
css generated with laravel mix 2.0.0 :
.no-webp .custom-background {
background-image: url(/images/custom.jpeg?47ab273…);
}
.webp .custom-background {
background-image: url(/images/custom.webp?1cb1372…);
}
I have the same issue when trying to generate a service worker with Google Workbox. All the entry points have double slashes except chunk files have the correct path.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Not reproduced in webpack "4.0.15", thanks.