Incorrect image path

BrowserSync is generating an incorrect image path from my CSS

Generated:

.hero { background: #fff url(http://localhost:3000/\"http://localhost:3000/wp-content/themes/my-theme)/dist/images/happy.jpg") top center no-repeat; }

Original

.hero {
  background: #fff url(../images/happy.jpg) top center no-repeat;
}

Hey @showFocus - can you share your resources/assets/config.json file?

Thank you @mmirus! There was a rogue ) at the end of my publicPath. It’s working as it should now :slight_smile:

1 Like