I'm working on a vue/laravel project and can't use one url path for both the dev environment (npm run hot) and production environment (php artisan serve).
This CSS example works only for php artisan:
background: url("../images/image.png")
while this only works for npm run hot:
background: url("/public/images/image.png")
Is there a method that works in both?