Hi,
I’m working with a new project that uses hugo. For generate the static site i’m using this command in my shell
hugo --baseUrl="http://my-website.com" --verbose --disableKinds=RSS -d=./public
In this site i have got a html tag with a background images. But with this generate command i have got a 404 error
The website is now http://my-website.com/public/…
But in my Dom HTML, i have got a css style in div tag : background-image:url('/images/headerTop/image.jpg');min-height:351px;background-position:center center;position:relative
. This images are a 404 error
I can resolve this, with a modification of css style in a div tag, but it’s not possible for my customers.
How can resolve this problem ?
Here my config.toml :
languageCode = "en-us"
contentdir = "content"
publishdir = "public"
builddrafts = false
baseurl = ""
relativeurls = true
canonifyurls = true
title = "website"
theme= "pixyll"
author = "author"
paginate = 06
paginatePath = "page"
[taxonomies]
categories = "categories"
[params]
#search_engine = true
#google_analytics_id = ""
#twitter_username = ""
#disqus_shortname = ""
locale = " "
maj = " "
Thanks so lot
doog