laravel-mix-tailwind
laravel-mix-tailwind copied to clipboard
Fonts cannot be processed after installation
I think I'm running into the same issue with images in css. While not using mix.tailwind()
, mix processes images referenced in css/scss like background: url("./bg.png");
After calling mix.tailwind()
in my mix config file, the images no longer get loaded by webpack/mix. I tried updating the scss to use @apply bg-[url('./bg.png')];
and that also didn't work.